oXiaoChong 2018-05-29
如下所示:
年月日时分秒
>>> print datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") 2017-07-15 15:01:35
年月日 小时分钟
>>> print datetime.datetime.now().strftime("%Y-%m-%d %H:%M") 2017-07-15 15:01
年月日
>>> print datetime.datetime.now().strftime("%Y%m%d") 20170715