Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将日期更改为格式MM/YY。问题是我并不总是不知道日期格式是从什么开始的。我的理解是,下面的代码需要先知道日期的格式,然后才能更改它是否正确?
MM/YY
newdate = datetime.datetime.strptime(str(mydate), '%Y/%m/%d').strftime('%m-%Y')
结果我得到了错误:
时间数据“2020-09-30”与格式“%Y/%m/%d”不匹配(
如何将我的日期转换为 MM/YY?
我正在使用 Django 1.4.6
newdate = datetime.datetime.strptime(str(mydate), '%Y-%m-%d').strftime('%m/%Y')