-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrolldice.py
28 lines (20 loc) · 901 Bytes
/
rolldice.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import random
class dice:
dices = [("---------", "| |", "| O |", "| |", "---------"),
("---------", "| O |", "| |", "| O |", "---------"),
("---------", "| O |", "| O |", "| O |", "---------"),
("---------", "| O O |", "| |", "| O O |", "---------"),
("---------", "| O O |", "| O |", "| O O |", "---------"),
("---------", "| O O |", "| O O |", "| O O |", "---------")]
def __init__(self, numondice=1):
self.numondice = numondice
def roll(self):
selected = []
for a in range(self.numondice):
selected.append(self.dices[random.randint(0, 5)])
for b in range(5):
for c in range(self.numondice):
print(selected[c][b], end=" ")
print()
d = dice(numondice=3)
d.roll()