Range Function In Python | Python Range Function With Example
The range
function in Python is a built-in function that allows you to generate a sequence of numbers. It is often used in for loops to iterate over a sequence of numbers.
Here is an example of how to use the range
function:
# Print the numbers 0 to 9 for i in range(10): print(i))output
0 1 2 3 4 5 6 7 8 9
Table of Contents
ToggleCertainly! Here are 10 examples of using the range function in Python:
# Print the numbers 0 to 9 for i in range(10): print(i))output
0 1 2 3 4 5 6 7 8 9Generating a sequence of numbers from 3 to 9: In this loop, the variable i takes the values from 3 to 9 (inclusive) as specified by the range(3, 10) function. The loop iterates over these values, and for each iteration, it prints the value of i using the print() function
for i in range(3, 10): print(i)output
3 4 5 6 7 8 9Generating a sequence of numbers from 0 to 9 with a step size of 2: In this loop, the variable i takes the values starting from 0 and increments by 2 at each step until it reaches 10 (exclusive). The range(0, 10, 2) function generates a sequence of numbers [0, 2, 4, 6, 8],
for i in range(0, 10, 2): print(i)
0 2 4 6 8
Generating a sequence of numbers from -10 to -1
It will generate and print a sequence of numbers from -10 to -1 (excluding -1) using the range function in Python. Here’s the code you providedfor i in range(-10, 0): print(i)OUTPUT
-10 -9 -8 -7 -6 -5 -4 -3 -2 -1
Generating a sequence of numbers from -10 to -1 with a step size of 3:
Your code looks almost correct, but the indentation of the print statement is off. In Python, indentation is crucial for defining blocks of code. Here’s the correct version of your codefor i in range(-10, 0, 3): print(i)This will generate the sequence of numbers from -10 to -1 (exclusive) with a step size of 3 and print each number on a new line. The output will be
-10 -7 -4 -1
Generating a sequence of numbers from 1 to 10 with a step size of 0.5:
for i in range(9, -1, -1): print(i)Generating a sequence of numbers from -5 to 5:
# Using the range function to generate the sequence sequence = list(range(-5, 5)) # Printing the sequence print(sequence)output
[-5, -4, -3, -2, -1, 0, 1, 2, 3, 4]Generating a sequence of numbers from 0 to 1 with a step size of 0.1:
for i in range(0, 1.1, 0.1): print(i)Generating a sequence of numbers from 10 to 1 with a step size of -1:
for i in range(10, 0, -1): print(i)
Create a list using range function
numbers = list(range(10)) print(numbers)output
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]This will create a list of numbers from 0 to 9. You can also specify a starting and ending number for the range, like this:
numbers = list(range(1, 11)) print(numbers)output
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]numbers = list(range(1, 11)) print(numbers) This will create a list of numbers from 1 to 10. You can also specify a step value, which determines the increment between the numbers in the sequence. For example:
numbers = list(range(0, 20, 2)) print(numbers)[0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
FAQ ON PYTHON RANGE FUNCTION
The range function is a built-in Python function used to generate a sequence of numbers within a specified range. It is often used in loops, particularly for loops, to iterate over a set of values.
The range function has three forms of syntax:
range(stop) – Generates numbers from 0 up to (but not including) stop.
range(start, stop) – Generates numbers from start up to (but not including) stop.
range(start, stop, step) – Generates numbers from start up to (but not including) stop, incrementing by step
for i in range(5): # This will iterate from 0 to 4. print(i)
for i in range(5, -1, -1): # This will iterate from 5 to 0 in reverse. print(i)
my_range = range(5) my_list = list(my_range) print(my_list) # [0, 1, 2, 3, 4]
No, range does not create a list in memory. It generates numbers on the fly as you iterate through them, which is memory-efficient, especially for large ranges
No, the range function only works with integer values. If you need a sequence of floating-point numbers, you can use a loop with a specified step size.
This behavior is intentional and follows the convention in Python, where ranges are typically used for zero-based indexing. By excluding the stop value, you ensure that the range goes up to, but does not include, that value.
yes, in Python 3, you can use the range function with non-integer values for start, stop, and step. However, it’s important to note that this behavior is different from Python 2, where range only accepted integers.