0
Coin flip simulation
I have created a coin object https://code.sololearn.com/cw4woujUAbeQ/#py and I want to flip this coin 10times and record the results in a list .And I want to do this 10000 times. Then I want to see how many times I will get consecutive 10 'H' in 10000 try.
4 ответов
+ 2
What issue are you running into then?
You can use a loop and specify how many times you want to flip the coin.
You can store the heads and tails amount in a variable.
+ 2
Baran Aldemir I ran your code a handful of times and got results of 6, 8, 9, 10 and 11. I think it works fairly well 😊
BTW, lines 21 and 22 could be de-indented as they are only useful after all 10 flips.
0
Actually this is what I menaged to code https://code.sololearn.com/cFZYTeKfVwP2/#py
But I guess something wrong with my code because i think result should be usually close to 9. Coder's Crux