簡體   English   中英

到下一個完整小時的時間

[英]Time to next full hour

我有如下時間戳:

時間戳('2022-01-01 19:55:00')

我如何獲得下一個完整小時(以分鍾為單位)的時差?

所以在這個例子中 output 應該是 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')))

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM