Python日期格式转换之将 字符串“%Y%m%d”转换成“%Y-%m-%d”

例如:将 '201601' 转换成 '2016-01-01'

 import datetime
 dd = datetime.datetime.strptime('201601', "%Y%m").strftime('%Y-%m-%d')

你可能感兴趣的:(编程练习)