"""Exercise 7.5.4 — First planet in the list

Chapter 7: Operators — Everyday Programming

This program should print the first planet, "Mercury".

This program contains exactly one bug. Solution: sol_7_5_4.py
"""

planets = ["Mercury", "Venus", "Earth"]
first_planet = planets[1]
print(first_planet)   # expected: Mercury
