Python Math: Randomly select an item from a list
Write a Python program to randomly select an item from a list.
Sample Solution:
Python Code:
import random
color = ['Red', 'Green', 'Black', 'Orange', 'Black']
print(random.choice(color))
Sample Output:
Black
Pictorial Presentation:
Flowchart:
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to print a random sample of words from the system dictionary.
Next: Write a Python program to calculate the absolute value of a floating point number.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics