我有一个用于电子纸框架的python脚本。我想将日期从“ 2019-02-04”更改为“ 02 feb”。我已经调整了几个小时的代码,但无法正常工作。
代码如下:
# Calendar strings to be displayed
day_str = time.strftime("%A")
day_number = time.strftime("%d")
month_str = time.strftime("%B") + ' ' + time.strftime("%Y")
month_cal = str(calendar.month(int(time.strftime("%Y")), int(time.strftime("%m"))))
month_cal = month_cal.split("\n",1)[1];
update_moment = time.strftime("%H") + ':' + time.strftime("%M")
答案 0 :(得分:1)
d = '2019-02-04'
datetime.strptime(d, '%Y-%m-%d').strftime('%d %b')
输出
'04 Feb'