Home »
Python »
Python programs
Python program to design a coin flip function
An example of random.choice() in Python: Here, we are going to learn how to design a function that can be used as coin flip and the function will return a random value of coin flip?
Submitted by Anuj Singh, on August 01, 2019
Here, we are going to build a coin() function using python. The program is so simple as an introductory program for defining a function. The function is going to use an inbuilt library naming random. This random library helps us to choose a random value of the variable within the range.
random.choice(['H','T'])
The above function will choose a random value with a probability of 0.5 each i.e. all are independent to each other which will work as dice.
Here is the code
import random
# function to return the random value of
# coin flip
def coin():
return random.choice(['H','T'])
# main code i.e. calling the function
print('COIN FLIP: ', coin())
print('COIN FLIP: ', coin())
print('COIN FLIP: ', coin())
print('COIN FLIP: ', coin())
print('COIN FLIP: ', coin())
Output
COIN FLIP: H
COIN FLIP: T
COIN FLIP: T
COIN FLIP: H
COIN FLIP: T
Python Basic Programs »