programming-examples/python/List/Python program to shuffle and print a specified list.py

4 lines
126 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
from random import shuffle
color = ['Red', 'Green', 'White', 'Black', 'Pink', 'Yellow']
shuffle(color)
print(color)