Skip to content

Commit cb5ea82

Browse files
committed
C0303: Trailing whitespace (trailing-whitespace), C0304: Final newline missing (missing-final-newline)
1 parent 98cdf9e commit cb5ea82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

0010-For-Loops/for_loops.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
print("Using range() to Iterate Over Numbers - start")
2525
print()
2626

27-
for i in range(10):
27+
for i in range(10):
2828
print(i) # Print 10 numbers starting from 0 (0-9)
2929

3030
print()
3131
print("Using range() to Iterate Over Numbers - finish")
32-
print("======================================================")
32+
print("======================================================")

0 commit comments

Comments
 (0)