Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Random choice in Python? I have the following script and need to use a for loop to print out a random choice from the list
Random choice in Python?
I have the following script and need to use a for loop to print out a random choice from the list 20 times. I know the current one I have now only prints out a singular random choice.
import random
daysofweek = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
print(random.choice(daysofweek))
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started