Format time string in Python 3.3

后端 未结 3 1885
逝去的感伤
逝去的感伤 2021-01-03 19:33

I am trying to get current local time as a string in the format: year-month-day hour:mins:seconds. Which I will use for logging. By my reading of the documentation I can do

3条回答
  •  时光说笑
    2021-01-03 20:03

    You can alternatively use time.strftime:

    time.strftime('{%Y-%m-%d %H:%M:%S}')
    

提交回复
热议问题