在Python中显示字符串的日期

时间:2011-05-25 14:13:55

标签: python

  

可能重复:
  Parse date and format it using python?

我在python中有以下字符串:

2011-05-25T02:11:04Z 

如何将其转换为

May, 25th 2:11

1 个答案:

答案 0 :(得分:2)

datetime.datetime.strptime('2011-05-25T02:11:04Z', '%Y-%m-%dT%H:%M:%SZ')会为您提供一个具有正确日期/时间的datetime.datetime对象。