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


你可以使用“from module import function”语句从一个 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

更新日期: 30-9 月-2019

10K+ 浏览

开启你的 职业

通过完成课程获得认证

开始
广告