Python range Function | Mastering Range for Python Beginners

Опубликовано: 09 Октябрь 2024
на канале: Jakubication
10
1

range is a Python function that generates a range of numbers. It doesn't generate a list of numbers, or any of the other built-in container types you are you to, range is both a function and a type of value. If you only specify one value to the range function, you generate a range of numbers from zero to one before the end value you specify. If you specify two values, you generate a range of numbers starting at the first number and stopping one short of the last number. If you specify three values, you still do the same start and stop business, but the third value determines how much of a step their is between each value. This value is one by default if you don't specify it. range is one of Python's 71 built-in functions. The proper audience for this video is beginner Python programmers.

Chapters
0:00 - Intro
0:14 - Just a Stop Value & Start and Stop Value
0:31 - Start and Stop Value In Wrong Order & Step Value
0:48 - Outro and Subscribe

Subscribe If You Enjoyed: https://www.youtube.com/@jakubication...

Previous Function to Learn (print):    • Python print  
Next Function to Learn (repr):    • Python repr  

To learn more about the built-in functions available to you in Python, check out this playlist:    • Python: Built-in Functions  

#codingforbeginners #programmingbasics #pythontutorial