#!/usr/bin/python3 # Description: How to shuffle a list. import random fruits = [ 'apple', 'banana', 'cherry', 'guava', 'orange','pineapple' ] random.shuffle(fruits) print(fruits) Output Python About the author Xuan Ngo is the founder of OpenWritings.net. He currently lives in Montreal, Canada. He loves to write about programming and open source subjects.