Here, we are going to build a biasedcoin() function using python. The program is so simple as an introductory program and similar to the function coin() for defining a biased coin flip. The function is going to use an inbuilt library naming random. This random python library helps us to choose a random value of the variable within the range or take some random value from a given set.
random.choice(['H','T','H'])
The above function will choose a random value with a probability of:
COIN FLIP = PROBABILITY OF OCCURRENCE
- HEAD = 0.67
- TAIL = 0.34
Here is the code
Output
need an explanation for this answer? contact us directly to get an explanation for this answer