python 列表字符串元素乱序

from random import shuffle  
color = ['1', '2', '3', '4', '5']  
shuffle(color)  
print(color)
原文地址:https://www.cnblogs.com/sea-stream/p/9966153.html