我想在计时器处暂停程序,以便我可以等待并恢复计时器

时间:2019-03-26 19:55:06

标签: python

我想暂停计时器,然后通过按键盘上的任何类型的按钮来恢复,并且必须在我离开的地方恢复

  • 我想让程序做什么的夏天-

在每次说剩余时间的时候重复询问我是否要暂停,并且每当我按Enter时它都需要暂停,然后从中断的地方继续播放,其余时间可以保持不变。在0.1处用于测试目的,在#处再次关闭(仅出于测试目的),不要介意,我只想知道如何暂停然后恢复计时器

import time
while True:
   input("Press Enter to continue...")
if input == ("enter"):

import time
boom = int("120")
while boom > 0:    
    time.sleep(0.1)    
    print(boom)  
    print ("minutes left")
    boom -= 1
    if boom <= 0:

        import ctypes 
        def Mbox(title, text, style):
         return ctypes.windll.user32.MessageBoxW(0, text, title, style)
        Mbox('WARNING', 'Your pc will shutdown in 30 seconds', 0)


import time
loot = int("30")
while loot > 0: 
     time.sleep(1)
     print(loot)
     print ("YOUR PC WILL SHUT DOWN ")
     loot -= 1
#import os;
#os.system("shutdown /s /t 1");

能够运行python脚本并能够通过按Enter键并恢复我离开的位置来暂停120分钟的时间

0 个答案:

没有答案