在另一个文件夹中调用类

时间:2014-10-13 10:49:54

标签: python python-2.7

给定文件夹结构如下:

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()

1 个答案:

答案 0 :(得分:0)

回答我自己:

from folder2.class1 import aa