“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
您可以使用“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