Question
Python question in Code step by step https://www.codestepbystep.com/problem/view/python/loops/flip_coin_three_heads Write a function named flip_coin_three_heads that repeatedly flips a coin until three heads in a row are
Python question in Code step by step
https://www.codestepbystep.com/problem/view/python/loops/flip_coin_three_heads
Write a function named flip_coin_three_heads that repeatedly flips a coin until three heads in a row are seen. You should use a Random object to give an equal chance to a head or a tail appearing. Each time the coin is flipped, what is seen is displayed (H for heads, T for tails). When 3 heads in a row are flipped a congratulatory message is printed. Here is a possible output of a call to your function:
T T T H T H H H Three heads in a row!
(Because this problem uses random numbers, our test cases check only the general format of your output. You must still examine the output yourself to make sure the answer is correct.)
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