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
|
|
# ptame se uzivatel jestli lukas krici
|
|
krici = input('Krici Lukas? : ')
|
|
# promenna `krici` ma typ str
|
|
|
|
# zjistujeme jestli uzivatel napsal ano
|
|
# tady je rozdil mezi 'ano' a 'Ano' (velka pismena nemame osetrena)
|
|
if krici == 'ano':
|
|
print('Lukasi, mohl by ses trochu ztisit?')
|
|
else:
|
|
print('zrovna nemluvi?')
|
|
|
|
# btw tohle vymyslel Lada
|