¡Sorpréndeme!

Lecture 56: A Range Function in Python

2025-05-20 6 Dailymotion

The range() function in Python generates a sequence of numbers. It is commonly used in loops to iterate a specific number of times. The function can take one, two, or three arguments:
range(stop):
Generates numbers from 0 up to (but not including) stop, incrementing by 1.
range(start, stop):
Generates numbers from start up to (but not including) stop, incrementing by 1.