python时间格式化的时候,去掉前导0的:
dt = datetime.now()
print dt.strftime(‘%-h’)
#结果是: ‘4’
在format string的%与flag之间,添加一个“-”即可。
在mac和linux中试过可用,不确定是否可以移植。
A programmer’s note boke for work and life
python时间格式化的时候,去掉前导0的:
dt = datetime.now()
print dt.strftime(‘%-h’)
#结果是: ‘4’
在format string的%与flag之间,添加一个“-”即可。
在mac和linux中试过可用,不确定是否可以移植。