"""Exercise 6.4.4 — Indexing the last item

Chapter 6: Objects — Everyday Programming

This program prints the most recent score in the list.

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

scores = [91, 87, 95, 78]
latest = scores[len(scores)]
print(latest)   # 78
