首页 > 代码库 > Python 调整日期格式
Python 调整日期格式
2017年6月28日 to 2017-06-28
2017年10月27日 to 2017-10-27
2017年12月1日 to 2017-12-01
2017年7月1日 to 2017-07-01
#coding=utf-8 def func(string): year = string.find(u‘年‘) month = string.find(u‘月‘) day = string.find(u‘日‘) if month-year==2: string = string.replace(u"年",u"年0") if day-month==2: string = string.replace(u"月",u"月0") return string.replace(u"日","").replace(u"月","-").replace(u"年","-") if __name__ == ‘__main__‘: l1 = u"2017年6月28日" l2 = u"2017年10月27日" l3 = u"2017年12月1日" l4 = u"2017年7月1日" print func(l1) print func(l2) print func(l3) print func(l4)
Python 调整日期格式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。