Python de ... Declaración de importación

# import only pi from math module

from math import pi
print("The value of pi is", pi)
SAMER SAEID