时间不准确还是低效的代码?

时间:2016-10-03 23:54:05

标签: python datetime time stopwatch

我目前正在制作一个程序,该程序将显示自特定点以来经过的时间量。秒表,如果你愿意的话。

我终于让我的代码工作了,但事实证明,它不是很准确。它很快落后,在跑步的前10秒内关闭了1秒甚至2秒,我不完全确定这是为什么。

#   Draw
def draw():
    stdscr.erase()
    stdscr.border()

    #   Debugging
    if debug:
        stdscr.addstr(5 , 3, "running  : %s " % running )
        stdscr.addstr(6 , 3, "new      : %s " % new )
        stdscr.addstr(7 , 3, "pureNew  : %s " % pureNew )
        stdscr.addstr(8 , 3, "paused   : %s " % paused )
        stdscr.addstr(9 , 3, "complete : %s " % complete )
        stdscr.addstr(10, 3, "debug    : %s " % debug )

    if running:
        stdscr.addstr(1, 1, ">", curses.color_pair(8))
        stdscr.addstr(1, 3, t.strftime( "%H:%M.%S", t.gmtime( timeElapsedTotal ) ) )

    elif not running:
        if new and pureNew:
            stdscr.addstr(1, 1, ">", curses.color_pair(5))
            stdscr.addstr(1, 3, t.strftime( "%H:%M.%S", timeNone ) )
        elif paused:
            stdscr.addstr(1, 3, t.strftime( "%H:%M.%S", t.gmtime( timeElapsedTotal ) ), curses.color_pair(1) )
            stdscr.addstr(1, 1, ">", curses.color_pair(3))
        else:
            stdscr.addstr(1, 1, ">", curses.color_pair(5))
            stdscr.addstr(1, 3, t.strftime( "%H:%M.%S", timeNone ) )

    stdscr.redrawwin()
    stdscr.refresh()
    return

    #   Calculations
def calc():
    global timeElapsedTotal
    if running:
        timeElapsedTotal = t.clock() - timeStart
    return

    #   Main Loop
while True:
    #   Get input from the user
    kInput = stdscr.getch()

    #   If q is pressed we close the program
    if kInput == ord('q'):
        endProg()

    #   If d is pressed we toggle 'debug' mode
    elif kInput == ord('d'):
        debug = not debug

    #   If s is pressed we stop the current run
    elif kInput == ord('s'):
        running = False
        new = True

    #   If spacebar is pressed and we are ready for a new run,
    #       we start a new run
    elif kInput == ord(' ') and new:
        running = not running
        new = not new
        pureNew = False
        timeStart = t.clock()

    #   If p is pressed and we are in the middle of a run,
    #       we pause the run
    elif kInput == ord('p') and not new:
        running = not running
        paused = not paused
        timeStart = t.clock() - timeStart

    calc()
    draw()

据我所知,上述代码按预期工作。我不确定滞后是来自time.clock()还是仅仅是我的低效代码。这是我需要使用线程的工作吗?

我做了一些谷歌搜索,看到其他人谈论时间模块中的其他功能,但没有一个对我有用。

如果这不是足够的信息,或者我犯了一个简单的错误,请告诉我。

1 个答案:

答案 0 :(得分:2)

事实证明,解决方案非常简单,只需按照 tdelaney 的建议从time.clock()更改为time.time()即可。

看起来我需要在使用模块时更全面地阅读模块。谢谢你的智慧。