我有一些有效的代码。问题是,输出数字不按顺序排列。我查看了 sorted() 函数并相信这是我需要使用的,但是当我使用它时,它说 sorted 只能接受 4 个参数,我有 6-7 个。
print "Random numbers are: "
for _ in xrange(10):
print rn(),rn(), rn(), rn(), rn(), rn(), rn()
with open('Output.txt', 'w') as f:
f.write("Random numbers are: \n")
for _ in xrange(500):
f.write("%s,%s,%s,%s,%s,%s\n" % (rn(), rn(), rn(), rn(), rn(), rn()))
如何在保持与此相同格式的同时对输出进行排序?
谢谢