Hi Metchel, you’re right, it’s not like range() should be deleted from the Python library; however, the majority of the time we’re iterating over something like a list/set/dictionary.
Your point is correct though, if you just wanted to do something 10 times then you’re better off doing something like for _ in range(10):
Appreciate your feedback and support!