gpt4 book ai didi

python - 时间不准确或代码效率低下?

转载 作者:行者123 更新时间:2023-12-01 03:39:36 25 4
gpt4 key购买 nike

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

我终于让我的代码工作了,但事实证明,它不是很准确。它落后得很快,在运行的前 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() 还是只是我的代码效率低下。这是我需要使用线程来完成的工作吗?

我做了一些谷歌搜索,看到其他人谈论时间模块中的其他功能,但这些功能对我来说都没有更好的效果。

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

最佳答案

事实证明,解决方案就像从 time.clock() 更改一样简单至time.time()正如tdelaney所建议的。

看起来我需要在使用模块时更彻底地阅读它们。感谢您的智慧。

关于python - 时间不准确或代码效率低下?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39842201/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com