This commit is contained in:
Désiré Werner Menrath 2023-03-28 18:59:38 +02:00
parent 831fadb7f2
commit 12ccfb0a36

18
main.py Normal file → Executable file
View 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()