mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-06 23:06:49 +02:00
[python/en] Range function arguments.
Range function with start and stop.
This commit is contained in:
@@ -339,6 +339,18 @@ prints:
|
|||||||
for i in range(4):
|
for i in range(4):
|
||||||
print(i)
|
print(i)
|
||||||
|
|
||||||
|
"""
|
||||||
|
"range(lower, upper)" returns a list of numbers
|
||||||
|
from the lower number to the upper number
|
||||||
|
prints:
|
||||||
|
4
|
||||||
|
5
|
||||||
|
6
|
||||||
|
7
|
||||||
|
"""
|
||||||
|
for i in range(4, 8):
|
||||||
|
print(i)
|
||||||
|
|
||||||
"""
|
"""
|
||||||
While loops go until a condition is no longer met.
|
While loops go until a condition is no longer met.
|
||||||
prints:
|
prints:
|
||||||
|
Reference in New Issue
Block a user