"""Exercise 20.15.1 — Reading the current temperature

Chapter 20: Common Pitfalls — Everyday Programming

This program should print the temperature returned by the function.

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

def current_temperature():
    return 21.5

print("Temperature:", current_temperature)
