Skip to content

Commit 4b085f7

Browse files
authored
Merge pull request #6828 from Rodo-Missan/main
Reto #0 - Python
2 parents a30e17f + c99f622 commit 4b085f7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
for i in range(1,101):
2+
if i%3 == 0 and i%5 == 0:
3+
print("fizzbuzz")
4+
elif i%3 == 0:
5+
print("fizz")
6+
elif i%5 == 0:
7+
print("buzz")
8+
else:
9+
print(i)

0 commit comments

Comments
 (0)