Question: Python: Write a program headstails.py. It should include a function flip(), that simulates a single flip of a coin: It randomly prints either Heads or
Python:
Write a program headstails.py. It should include a function flip(), that simulates a single flip of a coin: It randomly prints either Heads or Tails. Accomplish this by choosing 0 or 1 arbitrarily with random.randrange(2), and use an if-else statement to print Heads when the result is 0, and Tailsotherwise.
In your main program have a simple repeat loop that calls flip() 10 times to test it, so you generate a random sequence of 10 Heads and Tails.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
