Skip to content

Instantly share code, notes, and snippets.

@jackowayed
Last active November 16, 2021 06:44
Show Gist options
  • Save jackowayed/d5c4c99a123150d2b0d24c3d2a233e8d to your computer and use it in GitHub Desktop.
Save jackowayed/d5c4c99a123150d2b0d24c3d2a233e8d to your computer and use it in GitHub Desktop.
import random
def play(start):
roll = random.randint(1, 6)
if roll == 1:
return start / 2
if roll == 6:
return start * 2
return start * 1.05
amt = 100
for _ in range(300):
amt = play(amt)
print(amt)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment