我想將兩個變量傳遞給另一個python文件,我不想將它作爲子進程啓動。
我希望兩個進程分開運行,因爲file1有很多計算要做,並且不能等待file2的操作完成。用變量執行python文件
FILE1.PY
include os
name="one"
status="on"
os.system('F:\PythonSub\file2.py' name status)
FILE2.PY
include sys
name=sys.argv[0]
send=sys.argv[1]
print(send, name)
上面的代碼返回
send=sys.argv[1]
IndexError: list index out of range
我到底做錯了什麼?
的[我怎樣才能從異步運行的Python外部命令?(https://stackoverflow.com/questions/636561/how-can-i-run-an可能的複製-external-command-asynchronously-from-python) – hnefatl