"""Exercise 5.6.3 — Last score

Chapter 5: Data Structures — Everyday Programming

The program should print the last score in the list: 88.

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

scores = [70, 95, 88]
print(scores[3])   # 88
