4 lines
126 B
Python
4 lines
126 B
Python
|
from random import shuffle
|
||
|
color = ['Red', 'Green', 'White', 'Black', 'Pink', 'Yellow']
|
||
|
shuffle(color)
|
||
|
print(color)
|