-2

我不能以这样的形式做到这一点,它已经从今天的时间中扣除了一个例子;2021:04:05 形式为时:分:秒

from datetime import datetime, time



leaving_date = datetime.strptime('2021-04-05 00:00:00', '%Y-%m-%d %H:%M:%S')
now = datetime.now()

print(str"%d hours, %d minutes, %d seconds")

有人可以改进我的代码并帮助我吗?谢谢

4

1 回答 1

1

这将为您提供小时、分钟和秒作为每个字符串:

hours, minutes, seconds = str(now).split(" ")[1].split(".")[0].split(":")
于 2021-04-02T13:31:01.793 回答