1 import random 2 3 def heads_or_tails(): # Type your code here. 4 7 if name = random.seed(1) number of flips int(input()) '_main: 8 10 11 # Type your code here.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 21PE
icon
Related questions
Question

I need help solving this in python with given template

1 import random
2
3 def heads_or_tails():
4
# Type your code here.
7 ifname_
'_main:
random.seed(1)
number_of flips int(input())
8
10
11
# Type your code here.
Transcribed Image Text:1 import random 2 3 def heads_or_tails(): 4 # Type your code here. 7 ifname_ '_main: random.seed(1) number_of flips int(input()) 8 10 11 # Type your code here.
Write a program that simulates flipping a coin to make decisions. The input is how many decisions are needed, and the output is either
heads or tails. Assume the input is a value greater than 0.
Ex: If the input is:
3.
the output is:
heads
heads
tails
For reproducibility needed for auto-grading, seed the program with a value of 1. In a real program, you would seed with the current time. In
that case, every program's output would be different, which is what is desired but can't be auto-graded.
Note: A common student mistake is to seed before each call to random.randint(). But seeding should only be done once, at the start of the
program, after which random.randint() can be called any number of times.
Your program must define and call the heads_or_tails() function that randomly picks 0 or 1 and returns "heads" or "tails". Assume the value
O represents "heads" and 1 represents "tails".
Transcribed Image Text:Write a program that simulates flipping a coin to make decisions. The input is how many decisions are needed, and the output is either heads or tails. Assume the input is a value greater than 0. Ex: If the input is: 3. the output is: heads heads tails For reproducibility needed for auto-grading, seed the program with a value of 1. In a real program, you would seed with the current time. In that case, every program's output would be different, which is what is desired but can't be auto-graded. Note: A common student mistake is to seed before each call to random.randint(). But seeding should only be done once, at the start of the program, after which random.randint() can be called any number of times. Your program must define and call the heads_or_tails() function that randomly picks 0 or 1 and returns "heads" or "tails". Assume the value O represents "heads" and 1 represents "tails".
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Program on Numbers
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning