BadPython.com

Suggestion for "Iterating using index"

Iterate directly over the iterable, especially if you don't ever need the index. And if you do need the index as well as the value, use enumerate()
            
items = ["hello", "world", "third"]
for current in items:
    print(current)