Skip to content
Snippets Groups Projects
Commit 21bf647d authored by Fernando Gomez's avatar Fernando Gomez
Browse files

second try

parent a5408822
No related branches found
No related tags found
1 merge request!3Master
......@@ -6,7 +6,7 @@ def fizzbuzz(n:int) -> str:
For numbers which are multiples of both three and five print "FizzBuzz".
"""
l = []
for i in range(100):
for i in range(1:100):
if i % 2 == 0:
l.append ("Fizz")
elif i % 3 == 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment