在Python中,文件之間可以互相調用的方法有以下幾種:
# file1.py
def func1():
print("Hello from file1")
# file2.py
import file1
file1.func1() # 調用file1.py中的func1函數
# file1.py
def func1():
print("Hello from file1")
# file2.py
from file1 import func1
func1() # 調用file1.py中的func1函數
# file1.py
def func1():
print("Hello from file1")
# file2.py
from . import file1
file1.func1() # 調用file1.py中的func1函數
# file1.py
def func1():
print("Hello from file1")
# file2.py
import sys
sys.path.append('/path/to/directory') # 添加文件所在目錄到sys.path
import file1
file1.func1() # 調用file1.py中的func1函數
這些方法可以在不同的文件中進行相互調用,從而實現代碼的模塊化和重用。