"""Exercise 5.10.3 — Checking a type

Chapter 5: Data Structures — Everyday Programming

The program should report the type of a price as float.

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

price = 3.99
print(type(price))   # <class 'float'>
print(type(price) == int)   # expected: True
