0

我喜欢添加tweet = "@idoodler My CPU temperature is " + str(CPU_temp)os.system("sudo twidge update \"tweet\"")(tweet 是上面的推文字符串)。谁能告诉我如何将推文字符串添加到 os.system() 命令?

4

1 回答 1

1
cmd = "sudo twidge update \"{0}\"".format(tweet)
print cmd
os.system(cmd)

虽然说实话,你可能最好使用 subprocess.call

import subprocess
subprocess.call(["sudo","twidge","update",tweet])
于 2013-05-14T16:48:47.377 回答