使用另一个脚本的参数运行 Python 脚本
可以从另一个脚本执行一个 Python 脚本,并一路传递参数。假设您要运行一个脚本 (script2.py),该脚本迭代另一个脚本 (script1.py) 中的值 (0-3)。如何实现这一点?
要使用参数从 script1.py 执行 script2.py,请使用 os.system() 命令。例如:
<code class="python">import os # Run script2.py with argument 1 os.system("script2.py 1") # Run script2.py with argument 2 os.system("script2.py 2")</code>
正如您所尝试的那样,使用 execfile() 是不合适的,因为它在当前上下文中执行 Python 语句,而 sys.argv 保持不变。
请注意此方法不允许您从 script1.py 直接访问或修改 script2.py 中的变量。如果您需要在脚本之间交换数据,请考虑使用函数或模块。
以上是如何使用另一个脚本的参数运行 Python 脚本?的详细内容。更多信息请关注PHP中文网其他相关文章!