Creating a timer in python

后端 未结 13 2148
孤独总比滥情好
孤独总比滥情好 2020-12-07 18:58
import time
def timer():
   now = time.localtime(time.time())
   return now[5]


run = raw_input(\"Start? > \")
while run == \"start\":
   minutes = 0
   current_         


        
相关标签:
13条回答
  • 2020-12-07 19:44
    mins = minutes + 1
    

    should be

    minutes = minutes + 1
    

    Also,

    minutes = 0
    

    needs to be outside of the while loop.

    0 讨论(0)
提交回复
热议问题