我对 python 相当陌生,一直在尝试制作一个程序,一次打印一个字符的字符串。我最初time.sleep()用于延迟,但它非常不一致并且看起来断断续续。我现在time.clock()在打印字符后使用并比较它。它工作得更好,但有时仍然波涛汹涌。python中是否有非常一致的计时方法?
我的代码:
def typePrint(string, sec):
from time import clock
for char in string:
strt = clock()
print(char, end='', flush=True)
while clock() - strt < sec:
pass
print()
PIPIONE
相关分类