1. 首页
  2. 数据库
  3. 其它
  4. python 日期操作类代码

python 日期操作类代码

上传者: 2021-01-16 14:19:12上传 PDF文件 38.46KB 热度 15次
完整代码 # -*- coding: utf-8 -*- '''获取当前日期前后N天或N月的日期''' from time import strftime, localtime from datetime import timedelta, date import calendar year = strftime("%Y",localtime()) mon = strftime("%m",localtime()) day = strftime("%d",localtime()) hour = strftime("%H",localtime()) min = strftime("%M",loc
用户评论