mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-23 14:50:58 +00: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:
parent
1421373f87
commit
30e364f410
@ -425,7 +425,6 @@ by step. If step is not indicated, the default value is 1.
|
|||||||
prints:
|
prints:
|
||||||
4
|
4
|
||||||
6
|
6
|
||||||
8
|
|
||||||
"""
|
"""
|
||||||
for i in range(4, 8, 2):
|
for i in range(4, 8, 2):
|
||||||
print(i)
|
print(i)
|
||||||
|
Loading…
Reference in New Issue
Block a user