有两个文件 test1和test2
test1
# -*- coding: utf-8 -*- def abc(x): return x
test2
# -*- coding: utf-8 -*- # import test1 result = test1.abc(10) print(result)
运行报错 说test1未定义
看了一大堆文件,终于找到了解决方法
在目录下建立一个 __init__.py的空文件就好了
有两个文件 test1和test2
test1
# -*- coding: utf-8 -*- def abc(x): return x
test2
# -*- coding: utf-8 -*- # import test1 result = test1.abc(10) print(result)
运行报错 说test1未定义
看了一大堆文件,终于找到了解决方法
在目录下建立一个 __init__.py的空文件就好了