Skip to content

Instantly share code, notes, and snippets.

View lanerjo's full-sized avatar

Lance Zukel lanerjo

View GitHub Profile
import sys
import random
def rolldice():
raw_input("Press 'enter' when ready")
a = random.randrange(1,6)
b = random.randrange(1,6)
c = random.randrange(1,6)
print a
print b
print c