"""Exercise 10.8.5 — Docstring, then code

Chapter 10: Functions — Everyday Programming

This program should print the function's docstring.

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

def kelvin(celsius):
    """Convert Celsius to Kelvin.
    return celsius + 273.15

print(kelvin.__doc__)
