Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Python Programming # Type the missing single word or operator. # # Flip a coin 100 times and count the number of heads and tails.
Python Programming
# Type the missing single word or operator. # # Flip a coin 100 times and count the number of heads and tails. # Allow the program to use the random module _________random count = 1 heads = 0 tails = 0 # Write a loop that executes 100 times while count____________ 100: # Assign the random number to the flip variable flip = random.___________(0,1) # 0 is heads and 1 is tails if flip == 0:_____________ ____________+= 1 _______________: tails += 1 count += 1 print("There were",heads,"heads.") print("There were",tails,"tails.") input(" Press the enter key to end.")
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