Understanding _ in range() in Python
In Python, when you see a loop like this: Output: 1. What Does _ Mean in for _ in range()? The underscore (_) is a throwaway variable or dummy variable in Python. It means:
“I don’t care about this variable, I just need to repeat the loop.” So, instead of writing: You use _…