Python:将unicode字符串转换为MM / DD / YYYY

时间:2012-03-27 10:10:47

标签: python datetime converter

我有一个unicode字符串,例如 u'Mar232012'。我想以高效可靠的方式使用python将其转换为MM / DD / YYYY格式。

1 个答案:

答案 0 :(得分:11)

import datetime

datetime.datetime.strptime(u'Mar232012', '%b%d%Y').strftime('%m/%d/%Y')

打印'03/23/2012'