"""Exercise 10.7.5 — Expecting a value

Chapter 10: Functions — Everyday Programming

This should check whether the helper returned a usable number and print
it; it should print 42.

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

def lucky_number():
    chosen = 42

number = lucky_number()
print(number)  # 42
