如何在计时器中获取返回值

时间:2019-07-28 08:49:30

标签: python python-3.x timer

我做了一个简单的计时器 这个定时器有两个功能 1.倒数2.秒表

我想在游戏中使用计时器 例如)倒计时停止>游戏结束

所以我想在计时器中返回值。 但我不能
请帮我:)

import time
import threading
count = 0

def start_timer(count):
    print(count)
    count -= 1
    timer = threading.Timer(1, start_timer, args=[count])
    timer.start()

    if count == 0:
        print("game start!")
        timer.cancel()

def stop_watch():
        now = time.time()
        check = input("press button\n")
        stop = time.time()
        print("time : %0.3f" % (stop - now))

我无法获得返回值

0 个答案:

没有答案