gpt4 book ai didi

python - 将整数转换为字符串 MM :SS in Python

转载 作者:行者123 更新时间:2023-11-30 23:30:55 26 4
gpt4 key购买 nike

我想知道是否有一种方法可以将整数值转换为某种时间戳,就像使用strftime("%H:%M", gmtime()) 将输出当前小时和分钟。

我希望修复的代码片段如下所示:

#The full program includes an input system which makes this snippet run.
import time
initial_time = time.time()
print "It has been " + str(int(time.time()-initial_time)) + " since you said that."

假设程序运行时,整数值为596,大约为9分56秒。我需要程序做的是输出 09:56 而不是 596。如果有办法做到这一点,请告诉我。

附注如果有办法使用格式化运算符 %str(int(time.time()-initial_time)) 引入字符串,请也告诉我。

最佳答案

In [1]: import datetime

In [2]: str(datetime.timedelta(seconds=596))
Out[2]: '0:09:56'

关于python - 将整数转换为字符串 MM :SS in Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20273415/

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