Question: 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
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
