You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
341 B
Python
14 lines
341 B
Python
5 years ago
|
|
||
5 years ago
|
# ptame se uzivatel jestli lukas krici
|
||
5 years ago
|
krici = input('Krici Lukas? : ')
|
||
5 years ago
|
# promenna `krici` ma typ str
|
||
5 years ago
|
|
||
5 years ago
|
# zjistujeme jestli uzivatel napsal ano
|
||
|
# tady je rozdil mezi 'ano' a 'Ano' (velka pismena nemame osetrena)
|
||
5 years ago
|
if krici == 'ano':
|
||
|
print('Lukasi, mohl by ses trochu ztisit?')
|
||
|
else:
|
||
|
print('zrovna nemluvi?')
|
||
5 years ago
|
|
||
|
# btw tohle vymyslel Lada
|