python 函数帧率测量(速率)

python 函数帧率测量(速率),第1张

python 函数帧率测量(速率)
import time
st1 = time.perf_counter()

def fun():
    global st1
    while True:
        print('刷新帧率' + str((1 / (time.perf_counter() - st1)).__round__(1)) + 'fps')  # 显示帧率
        st1 = time.perf_counter()

        print("*" * 50)
        print("n")

fun()



输出:

刷新帧率111111.1fps
**************************************************


刷新帧率114942.5fps
**************************************************


刷新帧率117647.1fps
**************************************************


刷新帧率119047.6fps
**************************************************

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5480295.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存