In Python range() is an inbuilt function, it represents an immutable sequence of numbers, you may mostly use it for looping a specific number of times in for loops.
Syntax:range(stop)
range(start,stop)
range(start,stop,step)
- start: It is a value of the start parameter, zero by default. Optional
- stop: It is an value defining where to stop: Mandatory
- step: It is an value for inclementation. Optional
- The arguments to range function i.e. stop, start and stop can only byte int values.
- Only stop argument is mandatory.
- If you use syntax: range(stop), the start value is 0.
- If you use syntax: range(start,stop), the step value for increment is 1.
- If you use syntax: range(start,stop,step), the step value for cannot be 0
Range with one constructor argument: range(stop)
Example 1:no = range(5)
for i in no:
print("Hello Python!")
Output:
Hello Python!
Hello Python!
Hello Python!
Hello Python!
Hello Python!
Example 2:
print(list(range(10)))
Output:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Range with two constructor argument: range(start, stop)
Example 3:for i in range(1, 3):
print("Hello Python!")
Output:
Hello Python!
Hello Python!
Example 4:
print(list(range(1, 11)))
Output:
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Range with three constructor argument: range(start, stop, step)
Example 5:for i in range(1, 11, 1):
print(i*2)
Output:
2
4
6
8
10
12
14
16
18
20
Example 6:
print(list(range(0, 40, 5)))
Output:
[0, 5, 10, 15, 20, 25, 30, 35]
Note: if you provide step as zero, you will get ValueError error,
Traceback (most recent call last):
File "/Users/code2care/PycharmProjects/pythonProject/main.py", line 1, in &t;module>
print(list(range(10,20,0)))
ValueError: range() arg 3 must not be zero

Python documentation for range: https://docs.python.org/3/library/stdtypes.html?highlight=range#range
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- Python: Convert Date to DateTime
- How to sort a List using Lambda in Python
- Python matplotlib segmentation fault: 11 macOS Big Sur
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to install Python 3.11 on Mac
- How to flatten a nested list in Python
- Python: Pandas Merge DataFrames on Index Example
- How to Run all Cells at Once Jupyter Notebook
- Python - Convert float to String
- How to add borders to tkinter label text
- How to Exit a Loop in Python Code
- [Python] Fix: ValueError: All arrays must be of the same length
- Sorting an array using Bubble Sort in Python Programming
- How to Unzip a file using Python
- Python: Merge DataFrames Pandas Outer Join Example
- Change label (text) color in tkinter
- Convert Float to String in Python
- Fix: fatal error: No such file or directory compilation terminated
- Python: Access index/counter of a for loop iteration
- Import Other Python Files Examples
- How to install Anaconda on Mac (M1/M2 Mac)
- Python Regular Expression to Find All Matches in List
- How to Read a binary File with Python
- How to disable warnings while Python file execution
- Know current Python Version
More Posts:
- Your Android SDK is out of date or is missing templates. Please ensure you are using SDK version 22 or later. - Android
- Installing Visual Studio Code on Raspberry Pi - HowTos
- Android : No Launcher activity found! Error - Android
- How to Sort a LinkedList in Java - Java
- How to Install CVS Version Control on Linux/Ubuntu - Linux
- How to test Exceptions using Java JUnit - Java
- Android Studio Error:(19, 0) Gradle DSL method not found: android() - Android-Studio
- macOS Mail Fix: Authorization Error 400: invalid request - MacOS