我有兩個文件,我想從另一個文件中導入一個類。如何從其他.py文件中調用一個.py文件中存在的函數?
文件one.py
:
class One:
def printNumber(self, a):
print (a)
和文件two.py
:
#import One # gives error no module named One
#import one # gives error no module named one
class Two:
# Here I want to call printNumber method from one.py
您是否嘗試過谷歌搜索, 「如何在Python進口」? – NonCreature0714
如果這是python 2,根據它的語法來判斷,你可能需要在同一個目錄中有一個名爲'__init__.py'的文件(無法獲得下劃線語法....) – user3684792
[Python導入力學](http://stackoverflow.com/questions/1917958/python-import-mechanics) – Prune