Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Microsoft SQL Server 2014 Administration

Authors: Adam Jorgensen, Bradley Ball

1st Edition

111885926X, 9781118859261

More Books

Students also viewed these Databases questions

Question

u = 5 j , v = 6 i Find the angle between the vectors.

Answered: 1 week ago