items = ["hello", "world", "third"] for i in range(len(items)): current = items[i] print(current)
Is Bad:
Not Bad: