You are viewing a single thread.
View all comments 64 points
You call that russian roulette? This is real russian roulette. Dying is a 1/6 probability.
#!/usr/bin/env python3
import random
barrel = [0, 0, 0, 0, 0, 1]
random.shuffle(barrel)
print("Russian Roulette")
for i in barrel:
input("Press enter to shoot")
if i == 1:
print("You are dead.")
exit()
else:
print("Phew. You survived.")
20 points
1 point
16 points
And maybe the fact that you have to continue until the gun actually fires :|
10 points
11 points
5 points
3 points
3 points
1 point