将函数从一个python文件导入另一个python文件

时间:2017-11-18 14:33:56

标签: python function file import

假设我有一个名为a.py的python文件,其函数为x,y,z。

我想将它们导入名为b.py

的新文件

我尝试过:from a import *from a import all没有运气。

我可以单独执行此操作:from a import xfrom a import y ....

如何一次性导入所有这些?

1 个答案:

答案 0 :(得分:2)

您可以导入文件,然后使用函数名称前面的导入名称使用该文件中的函数。

import example #this import the entire file named example.py

example.myfunction() #this call a function from example file