How do you convert YYYY-MM-DDTHH:mm:ss.000Z time format to MM/DD/YYYY time format in Python?

前端 未结 5 932
感动是毒
感动是毒 2020-12-08 06:43

For example, I\'m trying to convert 2008-09-26T01:51:42.000Z to 09/26/2008. What\'s the simplest way of accomplishing this?

5条回答
  •  半阙折子戏
    2020-12-08 07:09

    The easiest way is to use dateutil.parser.parse() to parse the date string into a timezone aware datetime object, then use strftime() to get the format you want.

    import dateutil.parser
    
    d = dateutil.parser.parse('2008-09-26T01:51:42.000Z')
    print(d.strftime('%m/%d/%Y'))  #==> '09/26/2008'
    

提交回复
热议问题