planets = ("Mercury", "Venus", "Earth", "Mars") print(planets[0]) # Mercury print(planets[2]) # Earth
Click Run to execute this code.