Importing Something As Something Else : Import : Statement PYTHON TUTORIALS


PYTHON TUTORIALS » Statement » Import »

 

Importing Something As Something Else


import math as foobar 
foobar.sqrt(4

from math import sqrt as foobar 
foobar(4)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Statement
» Import