我试图在输入用户输入时停止计时器
前任。有人输入一个字符串,按回车键,然后计时器停止并记录输入该字符串所用的时间
这是我到目前为止所拥有的,但它是不正确的。
import time
count=0
stopthetimer = -1
while stopthetimer <0:
time.sleep(1)
count +=1
result = raw_input()
stopthetimer +=1
试图做到这一点,所以当结果完成时,它会进入 stopthetimer,从而停止循环。