w3resource

Python: Shuffle and print a specified list

Python List: Exercise - 15 with Solution

Write a Python program to shuffle and print a specified list.

Python: Shuffle and print a specified list

Sample Solution:

Python Code:

from random import shuffle
color = ['Red', 'Green', 'White', 'Black', 'Pink', 'Yellow']
shuffle(color)
print(color)

Sample Output:

['Yellow', 'Pink', 'Green', 'Red', 'Black', 'White'] 

Explanation:

In the above exercise -

color = ['Red', 'Green', 'White', 'Black', 'Pink', 'Yellow']  -> A list named color is defined and initialized with six string elements.

shuffle(color)  -> Here the shuffle() function from the random module is called with the color list as its argument. This function shuffles the elements of the list in-place, i.e., it modifies the list directly without returning a new list.

print(color)  -> Finally print() function prints the shuffled color list.

Flowchart:

Flowchart: Shuffle and print a specified list

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to print the numbers of a specified list after removing even numbers from it.
Next: Write a Python program to generate and print a list of first and last 5 elements where the values are square of numbers between 1 and 30 (both included).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

Python: Tips of the Day

Given a predicate function, fn, and a prop string, this curried function will then take an object to inspect by calling the property and passing it to the predicate:

Example:

def tips_check_prop(fn, prop):
  return lambda obj: fn(obj[prop])
check_age = tips_check_prop(lambda x: x >= 25, 'age')
user = {'name': 'Owen', 'age': 25}

print(check_age(user))

Output:

True 

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook