Stop using range() for loops in Python. Use enumerate()

Published: 24 January 2020
on channel: Data Science Garage
2,576
42

With this video I explain why in many cases we should use enumerate() instead of range() function in Python for loops.

The way of using range() is ugly: You either need a separate variable assignment to get the element or use a[i] all the time which could theoretically be an expensive operation. The point is that you generally don't want to use range(len(l)) when you want to iterate the elements of a list (although there may still be cases where it makes sense).

I think than enumerate is much more flexible and readable Python coding option than len(l) with range().

Thank you for watching. See you on other tutorials.
Vytautas.

#pythonfunctions
#pythonloops
#pythonbegineers


Watch video Stop using range() for loops in Python. Use enumerate() online without registration, duration hours minute second in high quality. This video was added by user Data Science Garage 24 January 2020, don't forget to share it with your friends and acquaintances, it has been viewed on our site 2,576 once and liked it 42 people.