v_1.0.1 20uhr05 29-03-2023

This commit is contained in:
Désiré Werner Menrath 2023-03-29 20:05:59 +02:00
parent b6b68a2fcb
commit d2d21b9e05

21
main.py
View File

@ -2,33 +2,20 @@
import random import random
from os import system, name from os import system, name
from subprocess import call
import sys
import termios
import tty
import keyboard
from colorama import Fore, Back, Style
cube_ = 'Würfel-Generator\n' cube_ = 'Würfel-Generator\n'
system('clear') system('clear')
def cube():
def cube():
entry = 99 entry = 99
while entry != 2: while entry != 2:
try: try:
#system('clear')
print('\x1b[H\x1b[1;14H ', cube_) print('\x1b[H\x1b[1;14H ', cube_)
entry = int(input('\x1b[H\x1b[B\x1b[B1 drücken zum Würfeln.\n2 drücken zum beenden.\n')) entry = int(input('\x1b[H\x1b[B\x1b[B1 drücken zum Würfeln.\n2 drücken zum beenden.\n'))
print('\n') print('\n')
if entry == 1: if entry == 1:
system('clear') system('clear')
#print(Fore.RED) print('\x1b[8;12HDu hast eine \x1b[1;33m%d\x1b[1;0m gewürfelt' % random.randint(1, 6))
print('\x1b[8;12HDu hast eine \x1b[1;33m%d\x1b[1;0m gewürfelt' %random.randint(1, 6))
#print("123 %d hajsishib" %random.randint(1, 6))
elif entry == 0: elif entry == 0:
print('\n') print('\n')
system('clear') system('clear')
@ -53,6 +40,4 @@ def cube():
print("entry =", entry) print("entry =", entry)
cube() cube()