Articles → Python → Import Selected Attributes Of A Module In Python
Import Selected Attributes Of A Module In Python
Example
from math import pi
print(pi)
Output
Call Tan Function
from math import pi
print(tan(1))
Output
Posted By - | Karan Gupta |
|
Posted On - | Friday, April 19, 2019 |