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.
20 lines
583 B
Python
20 lines
583 B
Python
|
|
# zjistujeme cislo od uzivatele
|
|
x = input('zadej cislo : ') # x je typ str
|
|
# prevadime x na typ int pomoci funkce `int`
|
|
# tohle vyhodi chybu pokud uzivatel je dement
|
|
# a napsal neco ve smyslu 'ahoj'; to totiz nelze prevest na int
|
|
x = int(x)
|
|
|
|
# koukame se jestli zbytek z deleni dvemi je 0
|
|
# -> jesli je `x` delitelne dvemi
|
|
if x % 2 == 0:
|
|
print('je sude')
|
|
else:
|
|
# tohle je sice ekvivalent `elif x % 2 == 1`
|
|
# ale takhle je to prehlednejsi
|
|
# mohli bychom taky napsat dalsi if
|
|
# - fungovalo by to stejne ale tohle je
|
|
# mnohem prehlednejsi
|
|
print('je liche')
|