要在Python中执行另一个Python文件,您可以使用import
语句将目标文件导入为模块,然后调用其函数或类。这是一个简单的示例:
假设我们有两个Python文件:main.py
和other_file.py
。
other_file.py
内容如下:
def hello(): print("Hello from other_file!")
要在main.py
中执行other_file.py
中的hello()
函数,请按照以下步骤操作:
- 打开
main.py
文件。 - 在
main.py
中,导入other_file
模块:
import other_file
或者,您可以导入other_file
中的特定函数:
from other_file import hello
- 在
main.py
中调用hello()
函数:
hello()
现在,当您运行main.py
时,它将执行other_file.py
中的hello()
函数,并输出:
Hello from other_file!