You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
498 B
18 lines
498 B
maklic = False #toto je bool proměnná
|
|
|
|
while True:
|
|
print("----------------------") ##pro snadší oddělení "znovu-vstupu"
|
|
print("jsi pred dverma co udelas?")
|
|
print("1) otevru dvere")
|
|
print("2) pouziju klic")
|
|
volba = input("co udelas 1/2:")
|
|
|
|
if volba == "1":
|
|
if maklic:
|
|
print("otevřel jsi dvere")
|
|
exit(0)
|
|
else:
|
|
print("Nejde to, je to zavřené")
|
|
if volba == "2":
|
|
maklic = True
|
|
print("máš klíč")
|