Python中的圆形时间

时间:2018-06-01 13:31:23

标签: python datetime time

如何将时间格式%HH:%MM:%SS。%f 转为%HH:%MM:%SS

例如:23:45:21.63023:45:22

2 个答案:

答案 0 :(得分:1)

简单删除%f

dt.strftime('%H:%M:%S')

答案 1 :(得分:1)

使用strftime()格式化功能。例如:

datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")