假设我有一个名为a.py
的python文件,其函数为x,y,z。
我想将它们导入名为b.py
我尝试过:from a import *
和from a import all
没有运气。
我可以单独执行此操作:from a import x
,from a import y
....
如何一次性导入所有这些?
答案 0 :(得分:2)
您可以导入文件,然后使用函数名称前面的导入名称使用该文件中的函数。
import example #this import the entire file named example.py
example.myfunction() #this call a function from example file