在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
函数了。