"""Exercise 10.1.3 — The function body

Chapter 10: Functions — Everyday Programming

This program should print the number of days in a week when called.

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

def days_in_week():
print("A week has 7 days.")

days_in_week()
