get it on google playCreated with Sketch.
Python> Alias

Alias

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)
TRY IT ON THE APP