2010年12月31日 星期五

產生隨機數列

程式碼


import random

items = [1, 2, 3, 4, 5, 6, 7]
random.shuffle(items)
print items
random.shuffle(items)
print items

沒有留言: