Statement Python Tutorial

# After  using 'from module  import function', you can use the  function without its module prefix.
from math import sqrt 
print sqrt(9)