以下のコードの実行結果として正しいものはどれですか? ```python lines = ['Hello', 'World', 'Python'] for i, line in enumerate(lines): print(f"{i}: {line}") ```