我正在嘗試編寫一個可以傳遞os.system()變量的短程序。其中變量定義如下:當我將它指定爲將定義爲文件的變量傳遞給os.system()
import os
os.system("python code.py input.xxxx output.xxxx")
但不能與變量
code = 'code.py'
input_file = 'input.xxxx'
output_file = 'output.xxxx'
import os
os.system("python code input_file output_file")
代碼工作。 您的幫助將不勝感激。
非常感謝。有用! – maniunchik
好!我很高興它有幫助。如果您有滿足您需求的答案,您應該[將其中一個可用答案標記爲已接受](http://stackoverflow.com/help/accepted-answer)。 – skrrgwasme
剛剛做到了!謝謝。 – maniunchik