使用另一個腳本的參數執行 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中文網其他相關文章!