Linux系统,需要在日期类型前加上-
Windows系统,需要在日期类型前加上#
具体使用可以参考下面代码
import time
# Linux
time.strftime('%-m%-d', time.localtime())
# Windows
time.strftime('%#m%#d', time.localtime())
Linux系统,需要在日期类型前加上-
Windows系统,需要在日期类型前加上#
具体使用可以参考下面代码
import time
# Linux
time.strftime('%-m%-d', time.localtime())
# Windows
time.strftime('%#m%#d', time.localtime())
本文标题:Python 让日期不自动补0的方法
本文链接:https://www.haomeiwen.com/subject/tmizvhtx.html
网友评论