gpt4 book ai didi

python - 如何在 Python 3 中的另一个文件夹中打开 Python 3 程序

转载 作者:太空宇宙 更新时间:2023-11-03 16:02:41 24 4
gpt4 key购买 nike

我想在 Python 3 中打开一个 Python 3 程序,但目标程序在另一个文件夹中。

EG:Pythonloader.py > PythonFolder > Target.py

我使用的是Python 3.3.0

最佳答案

使用子进程模块运行任何外部程序:

import subprocess
subprocess.call('python3 /path/to/target.py')

检查https://docs.python.org/2/library/subprocess.html进行审查。

如果您想导入代码以在脚本中使用:

import sys
sys.path.append('/path/to/containing/directory')
import target

然后您就可以使用其中的代码。

关于python - 如何在 Python 3 中的另一个文件夹中打开 Python 3 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40176616/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com