要在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!