Skip to content

Commit eef2508

Browse files
authored
Update FizzBuzzPy.py
1 parent 11f0561 commit eef2508

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Python/FizzBuzzPy.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//forloop
12
for fizzbuzz in range(101):
23
if fizzbuzz % 3 == 0 and fizzbuzz % 5 == 0:
34
print("fizzbuzz")
@@ -8,4 +9,4 @@
89
elif fizzbuzz % 5 == 0:
910
print("buzz")
1011
continue
11-
print(fizzbuzz)
12+
print(fizzbuzz)

0 commit comments

Comments
 (0)