gpt4 book ai didi

python - 如何使用计时器关闭带有 python 2.7 的 Windows 8

转载 作者:可可西里 更新时间:2023-11-01 09:24:56 26 4
gpt4 key购买 nike

我正在做一个小项目来学习更多关于 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

最佳答案

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.

关于python - 如何使用计时器关闭带有 python 2.7 的 Windows 8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19094664/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com