Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the quiz-master-next domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /data01/virt105257/domeenid/www.blinov20.thkit.ee/htdocs/wp/wp-includes/functions.php on line 6131
IF условный оператор – Georgi Blinov Õpimapp

IF условный оператор

otvet=input(“Töö on soritatud?”)
if otvet.lower()==”jah” :
print (“Hinne tahvlisse”)

Если скажу показать,то оценка в тахвель

otvet=float(input(“Sisesta hinne”))
if otvet==5 :
print (“Tubli!”)
elif otvet==4:
print(“Hinne riti tubli”)
elif otvet==3:
print(“Vaja natuke juurde õpida!”)
elif otvet==2 or otvet==1:
print(“Ploho”)
else:
print(“Viga!”)

a=float(input(“первый угол”))
b=float(input(“второй угол”))
c=float(input(“третий угол”))
if (a+b+c)==180 :
print(“верный ответ”)
else :
print(“неверный ответ”)

a=float(input(“первый угол”))
b=float(input(“второй угол”))
c=float(input(“третий угол”))
if a>0 and b>0 and c>0:
#pass
if a+b+c==180:
print(“Kolmnurk”)
else:
print(“LIhtsalt nurgad”)
else:
print(“Ei ole kormnurk ja nurgad <0”)

password=(input(” Enter your password”))
login=(input(“Enter your login”))
if password==”Blinov1423″ and login==”Kirill”:
print(“You logged in”)
else:
print(“Invalid password or login”)