We also rename modules so that they don't interfere with variables in our code. Here, math
already exists and would cause an error.
import math as math_constants
math = "Grade 12 constants"
print(math)
print("pi:")
print(math_constants.pi)
print("Euler's number:")
print(math_constants.e)