给定文件夹结构如下:
folder1
__init.py__
python1.py
folder2
__init.py__
class1.py
在class1.py
我说
class aa:
def __init__(self,max):
self.max=max
def hello(self):
print(self.max)
我应该从python1.py
导入什么来调用aa.hello()
?
即,python1.py
#what do I need to import here
myaa=aa(100)
myaa.hello()
答案 0 :(得分:0)
回答我自己:
from folder2.class1 import aa