本文介绍了如何使用python获取秒数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的代码:

last_time = get_last_time()
now = time.time() - last_time
minute = 
seconds = 
print 'Next time you add blood is '+minute+':'+seconds

因为每5分钟恢复一次血所以只需要一分一秒

Because recovery blood every 5 minutes so only need minute and second

谢谢

推荐答案

这是基本的时间算法...如果你知道一分钟有 60 秒,那么你可以发现自己:

This is basic time arithmetics...if you know that a minute has 60 seconds then you couldhave found that yourself:

minute = int(now / 60)
seconds = int(now % 60)

这篇关于如何使用python获取秒数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 03:34