[python/en] Range function arguments.

Range function with start and stop.
This commit is contained in:
Sriram Sundarraj 2015-04-23 02:06:43 +05:30
parent d20eb1fb94
commit 8cfb7ba02f

View File

@ -339,6 +339,18 @@ prints:
for i in range(4):
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.
prints: