Skip to content

Instantly share code, notes, and snippets.

View anossov's full-sized avatar

Pavel Anossov anossov

View GitHub Profile
""" Dice rolling simulator, will ask user to press Enter to roll.
Will print a random number between 1 to 6. Will ask user if they want to roll again. """
import random
print "Welcome to the Dice Rolling Simulator!\n"
print "Press Enter to roll the dice."
begin = raw_input("")
""" function where random numbers are generated """