Python时间格式化的时候,去掉前导0的: dt = datetime.now() print dt.strftime('%-H') 登入後複製 #结果是: '4' 在format string的%与flag之间,添加一个“-”即可。 在Mac和Linux中试过可用,不确定是否可以移植。