What is the use of "from...import" Statement in Python?


The "from module import function" statement is used to import a specific function from a Python module. For example, if you want to import the sin function from the math library without importing any other function, you can do it as follows:

>>> from math import sin
>>> sin(0)
0.0

Note that you don't have to prefix sin with "math." as only sin has been imported and not math. Also you can alias imported functions. For example,

>>> from math import cos as cosine
>>> cosine(0)
1.0

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements