Skip to content
Snippets Groups Projects
Commit 5ea71e66 authored by Boto Sanchez, Fernando's avatar Boto Sanchez, Fernando
Browse files

mod

parent 9ff2bf81
No related branches found
No related tags found
No related merge requests found
Pipeline #30222 failed
......@@ -5,5 +5,13 @@ def fizzbuzz(n:int) -> str:
And for the multiples of five print "Buzz".
For numbers which are multiples of both three and five print "FizzBuzz".
"""
for i in range(1,101):
if i%3==0 and not i%5==0:
print "Fizz"
if i%5 and not i%3==0:
print "Buzz"
if i%3==0 and i%5==0:
print "FizzBuzz"
return ""
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment