到下一个整小时的时间



时间戳如下:

时间戳(2022-01-01 19:55:00)

如何获得下一个整小时的时差(以分钟为单位)?

所以在这个例子中,输出应该是5分钟。

您需要使用datetime库:

from datetime import datetime, timedelta
def time_to_next_hour(timestamp):
current_time = datetime.strptime(str(timestamp), '%Y-%m-%d %H:%M:%S')
next_hour = current_time.replace(microsecond=0, second=0, minute=0) + timedelta(hours=1)
time_diff = next_hour - current_time
return int(time_diff.total_seconds() / 60)
print(time_to_next_hour(Timestamp('2022-01-01 19:55:00')))

相关内容

  • 没有找到相关文章

最新更新