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.
23 lines
431 B
Python
23 lines
431 B
Python
|
|
# tahame hodnotu od uzivatele
|
|
lim = int(input('zadej cislo : '))
|
|
|
|
# prazny string
|
|
output = ''
|
|
# vsechna cisla do lim
|
|
for i in range(lim):
|
|
# reset promenny output
|
|
output = ''
|
|
|
|
# pokud delitelne tremi
|
|
if i % 3 == 0:
|
|
output += 'fizz'
|
|
# pokud delitelne peti
|
|
if i % 5 == 0:
|
|
output += 'buzz'
|
|
|
|
# zjistujeme jestli nam to
|
|
# stoji za to vypsat
|
|
if output != '':
|
|
print(output)
|