Python

Python Menu

Python

Python range() Function - Definition, Syntax, Parameters, Examples

Definition

The range() function returns a sequence of numbers, starting from 0 by default, and increments by 1 (by default), and stops before a specified number.

Syntax

range(start, stop, step)

Parameters

Parameter Description
start Optional. An integer number specifying at which position to start. Default is 0
stop Required. An integer number specifying at which position to stop (not included).
step Optional. An integer number specifying the incrementation. Default is 1

Examples

myInt = range(6) for n in myInt: print(n) # prints numbers 3 to 5 x = range(3, 6) for n in x: print(n)

Introduction

Python Basics

Python Advance

Data Science Python Tutorials

Python Functions and Methods