在Python中,你可以使用import
語句來調用另一個Python文件。假設你有兩個文件:main.py
和other_file.py
,并且你想在main.py
中調用other_file.py
中的函數。首先,確保other_file.py
中的函數已經定義好了。例如:
other_file.py:
def my_function():
print("Hello from other_file!")
然后,在main.py
中,你可以使用import
語句來導入other_file
模塊,并調用其中的函數:
main.py:
import other_file
other_file.my_function() # 輸出: Hello from other_file!
如果你只想調用other_file.py
中的一個特定函數,而不是整個模塊,你可以使用from ... import ...
語句:
main.py:
from other_file import my_function
my_function() # 輸出: Hello from other_file!
這樣,你就可以在main.py
中直接調用other_file.py
中的my_function
函數了。