1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 13:38:38 +01:00

Fixed erroneous output stated in a comment

range( start = lower limit, End is < Upper limit , Step)
The upper limit is never printed. Fixed the error.
This commit is contained in:
Louis Christopher 2015-11-21 19:28:59 +05:30
parent 1421373f87
commit 30e364f410

View File

@ -425,7 +425,6 @@ by step. If step is not indicated, the default value is 1.
prints:
4
6
8
"""
for i in range(4, 8, 2):
print(i)