如何从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
广告