How to remove seconds from datetime?

前端 未结 10 1914
终归单人心
终归单人心 2021-02-20 13:02

I have the following date and I tried the following code,

df[\'start_date_time\'] = [\"2016-05-19 08:25:00\",\"2016-05-19 16:00:00\",\"2016-05-20 07:45:00\",\"20         


        
10条回答
  •  鱼传尺愫
    2021-02-20 13:40

    this is with the time module not datetime module but might be what your looking for...

    import time
    X = time.strftime("%H:%M")
    print(X)
    

    or you with seconds

    import time
    X = time.strftime("%H:%M:%S")
    print(X)
    

    If your gonna down vote please explain why

提交回复
热议问题