from random import shuffle
color = ['', '', '', '', '']
shuffle(color)
print(color)
05-11 15:47