python时间戳提取小时分钟秒,进行整点判断

import time from datetime import datetime a = int(time.time())#当前时间 c = datetime.fromtimestamp(a+43200).strftime('%H:%M')#格式转换 print(c)

21:18
print(c > '20:00')

True
【python时间戳提取小时分钟秒,进行整点判断】转载于:https://www.cnblogs.com/haoyiyang/p/11309788.html

    推荐阅读