Skip to content

Instantly share code, notes, and snippets.

@luigidon
Created September 22, 2016 16:24
Show Gist options
  • Save luigidon/b0858044fc9a500b71596021d925c8c9 to your computer and use it in GitHub Desktop.
Save luigidon/b0858044fc9a500b71596021d925c8c9 to your computer and use it in GitHub Desktop.
izbrano_stevilo = 0
izbrano_stevilo = int(raw_input("Vnesi stevilo od 1 do 100!"))
for x in range(1,izbrano_stevilo+1):
if ((x % 3) == 0) and ((x % 5) == 0):
print("fizzbuzz")
elif (x % 5) == 0 :
print("buzz")
elif (x % 3) == 0 :
print("fizz")
else:
print(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment