ferig
This commit is contained in:
parent
831fadb7f2
commit
12ccfb0a36
18
main.py
Normal file → Executable file
18
main.py
Normal file → Executable file
@ -1,18 +1,26 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
import random
|
import random
|
||||||
cube = 'Würfel-Generator\nZum Würfeln die 1 Drücken.'
|
import os
|
||||||
|
|
||||||
|
cube = 'Würfel-Generator\n'
|
||||||
print(cube.center(54))
|
print(cube.center(54))
|
||||||
def cube():
|
def cube():
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
entry = int(input('1 drücken zum Würfeln.\n'))
|
entry = int(input('1 drücken zum Würfeln.\n2 drücken zum beenden.\n'))
|
||||||
#entry = int(entry)
|
|
||||||
if entry == 1:
|
if entry == 1:
|
||||||
|
os.system("clear")
|
||||||
print(random.randint(1, 6))
|
print(random.randint(1, 6))
|
||||||
|
elif entry == 0:
|
||||||
|
print('Ups! Da wurde nicht 1 oder 2 gedrückt. Bitte nochmal versuchen.\n')
|
||||||
|
elif entry == 2:
|
||||||
|
print('Danke für\'s würfeln.\nBis Bald!')
|
||||||
|
exit()
|
||||||
elif entry > 1:
|
elif entry > 1:
|
||||||
print('Ups! Da wurde nicht die 1 gedrückt. Bitte nochmal versuchen.\n')
|
print('Ups! Da wurde nicht 1 oder 2 gedrückt. Bitte nochmal versuchen.\n')
|
||||||
except ValueError:
|
except ValueError:
|
||||||
print('Ups! Da wurde nicht die 1 gedrückt. Bitte nochmal versuchen.\n')
|
print('Ups! Da wurde nicht 1 oder 2 gedrückt. Bitte nochmal versuchen.\n')
|
||||||
|
|
||||||
cube()
|
cube()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user