We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263fdcf commit deb9adaCopy full SHA for deb9ada
Python/fizz_buzz_zbarovsky.py
@@ -1,5 +1,5 @@
1
for i in range (1, 101):
2
- if i % 3 == 0 and i % 5 == 0:
+ if i % 15 == 0:
3
print('fizzbuzz')
4
elif i % 3 == 0:
5
print('fizz')
0 commit comments