6 lines
141 B
Python
6 lines
141 B
Python
# on Christoffer's kill list
|
|
class Cup:
|
|
def roll(self):
|
|
return ( random.randrange(1,7),
|
|
random.randrange(1,7) )
|