3

我正在做一个小项目来了解有关 python 2.7 的更多信息。我正在制作一个关机计时器,我已经设置好了 GUI,我只需要关闭 Windows 8 的命令。cmd 命令是:shutdown /t xxx。

我尝试了以下方法:

import subprocess
time = 10
subprocess.call(["shutdown.exe", "/t", "time"])


import os
time = 10
os.system("shutdown /t %s " %str(time))

两者都不起作用。感谢任何帮助,我使用的是 Windows 8,所以我认为 Windows 7 的解决方案是不同的。

感谢您的回答,这是我制作的关机计时器:

https://github.com/hamiltino/shutdownTimer

4

1 回答 1

3

的第一个参数subprocess.call应该是程序参数(字符串)的序列或单个字符串。

尝试以下操作:

import subprocess
time = 10
subprocess.call(["shutdown.exe", "/t", str(time)]) # replaced `time` with `str(time)`
# OR subprocess.call([r"C:\Windows\system32\shutdown.exe", "/t", str(time)])
#      specified the absolute path of the shutdown.exe
#      The path may vary according to the installation.

或者

import os
time = 10
os.system("shutdown /t %s " % time)
# `str` is not required, so removed.
于 2013-09-30T12:50:25.040 回答