我有一些代碼可以工作。問題是,輸出數字不合適。我查看了sorted()函數並相信這就是我需要使用的,但是當我使用它時,它說排序只能有4個參數,我有6-7個參數。排序函數需要4個參數?
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()))
如何對輸出進行排序,同時保持與此格式相同的格式?
謝謝
完美的工作。謝謝。 – BubbleMonster