如何从Python模块导入单个函数?


你可以使用“from module import function”语句从Python模块中导入一个特定的函数。例如,如果你想从Python math库中导入sin函数而无需导入任何其他函数,你可以这样做

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

请注意,你无需在sin前面加上“math”,因为只有sin被导入,而不是math。此外,你还可以对导入的函数进行别名。例如,

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

更新时间:2019年9月30日

10K+查看

开启您的 职业

通过完成课程获得认证

开始
广告