Ahoj, mám kod a chtěl bych aby po 10 příkladech kod skončil a napsal kolik příkládů bylo špatně a dobře, pomůže mi prosím někdo ? Děkuji
import random
import time
print("="*100)
print("Nasobeni = 1")
print("Scitani = 2")
print("Odcitani = 3")
vyber = int(input("Vyber si : "))
if vyber == 1:
print("="*100)
print("Lehka = 1")
print("Tezka = 2")
obtiznost1 = int(input("Vyber si obtiznost: "))
if obtiznost1 == 1:
while True:
a = random.randint(1, 9)
b = random.randint(1, 9)
print(a,"*",b)
f = int(input("Kolik to je?: "))
x = 1
l = a*b
if f == l:
print("Správně")
else:
print("Špatně")
if obtiznost1 == 2:
while True:
a = random.randint(1, 20)
b = random.randint(1, 20)
print(a,"*",b)
f = int(input("Kolik to je?: "))
l = a*b
if f == l:
print("Správně")
else:
print("Špatně")
if vyber == 2:
print("="*100)
print("Lehka = 1")
print("Tezka = 2")
obtiznost1 = int(input("Vyber si obtiznost: "))
if obtiznost1 == 1:
while True:
a = random.randint(1, 30)
b = random.randint(1, 30)
print(a,"+",b)
f = int(input("Kolik to je?: "))
l = a+b
if f == l:
print("Správně")
else:
print("Špatně")
if obtiznost1 == 2:
while True:
a = random.randint(1, 200)
b = random.randint(1, 200)
print(a,"+",b)
f = int(input("Kolik to je?: "))
l = a+b
if f == l:
print("Správně")
else:
print("Špatně")
if vyber == 3:
print("="*100)
print("Lehka = 1")
print("Tezka = 2")
obtiznost1 = int(input("Vyber si obtiznost: "))
if obtiznost1 == 1:
while True:
a = random.randint(1, 30)
b = random.randint(1, 30)
print(a,"+",b)
f = int(input("Kolik to je?: "))
l = a+b
if f == l:
print("Správně")
else:
print("Špatně")
if obtiznost1 == 2:
while True:
a = random.randint(1, 200)
b = random.randint(1, 200)
print(a,"-",b)
f = int(input("Kolik to je?: "))
l = a-b
if f == l:
print("Správně")
else:
print("Špatně")