from random import shuffle  
color = ['1', '2', '3', '4', '5']  
shuffle(color)  
print(color)

 

相关文章: