1

我的问题可能是重复的,但我找不到答案。

如何从另一个 python 文件中获取 python 文件。就像是:

def fun_1 (arg):
   ...
   ...
   fun_2 (arg):
     ...
     ...

#### MAIN ####

Source the file that contains the function `fun_2`

fun_1('hello')
4

1 回答 1

4

规范的方法是将第一个文件转换为模块,然后import将其转换为第二个文件:

$ cat file1.py
def fun():
   print('in fun1')

$ cat file2.py
import file1

file1.fun()
于 2013-10-29T10:34:30.600 回答