使用输入函数指定关闭的时间

时间:2016-11-15 20:00:22

标签: python

编辑脚本以使用input()函数查询用户的关闭超时时间。编辑脚本以使用另一个input()函数来查询用户,以便在计算机执行关闭时显示该消息。我在使用输入功能询问用户关闭计算机的时间以及要求他们显示消息时遇到问题。

import os

#chkdsk = "chkdsk C:"
#os.system(chkdsk)

print("How much time till shutdown?")
time = input() 
print (time)

shutdown = 'shutdown", "-f", "-r", "-t", "-c", MESSAGE HERE'
os.system(shutdown)

2 个答案:

答案 0 :(得分:0)

我是否理解你:你想把时间放在字符串里面吗?

shutdown = 'shutdown -f -r -t {time} -c MESSAGE HERE'
os.system(shutdown.format(time=time))

答案 1 :(得分:0)

您只需使用该行:

x = int(input("How much time till shutdown?"))