Skip to content

Instantly share code, notes, and snippets.

@cosme12
Last active February 5, 2019 15:32
Show Gist options
  • Save cosme12/8e63641ae58d34b684eae8a36d7f3f26 to your computer and use it in GitHub Desktop.
Save cosme12/8e63641ae58d34b684eae8a36d7f3f26 to your computer and use it in GitHub Desktop.
#For a more advanced example look here: http://copitosystem.com/courses/dice-simulator-course/
import random
while True:
rolled = random.randint(1,6)
print("The dice rolled and you got: ", rolled)
input("Press enter key to roll again.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment