Edit the script to use the input() function to query the user for the shutdown timeout period. Edit the script to use another input() function to query the user for a message to display as the machine executes the shutdown. I am having problems using the input function to ask the user for a time to shutdown the computer and also asking them for a message to display.
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)