Python 获取当天日期、前一天日期、前半个月

简介: Python 获取当天日期、前一天日期、前半个月

Python 获取当天日期、前一天日期、前半个月


Python 代码如下:

import datetime
# 获取当前时间
now_time = datetime.datetime.now()
print("now time: ",now_time)
# 获取前一天时间
end_time = now_time + datetime.timedelta(days = -1)
# 前一天时间只保留 年-月-日
enddate = end_time.strftime('%Y-%m-%d') #格式化输出
print("end date: ",enddate)
# 获取前 15 天时间
start_time = now_time + datetime.timedelta(days = -15)
# 前 15 天时间只保留 年-月-日
startdate = start_time.strftime('%Y-%m-%d') #格式化输出
print("start date: ",startdate)

以上,问题解决~

相关文章
|
6月前
|
Python
「Python系列」Python 日期和时间
Python 提供了多个内置模块来处理日期和时间,其中最常用的是 `datetime` 模块。这个模块提供了类来操作日期、时间、日期和时间间隔。
69 0
|
1月前
|
Python
Datetime模块应用:Python计算上周周几对应的日期
Datetime模块应用:Python计算上周周几对应的日期
|
1月前
|
Python
Python编程获取当前日期的所属周日期信息
Python编程获取当前日期的所属周日期信息
|
1月前
|
数据挖掘 iOS开发 MacOS
利用Python计算农历日期
利用Python计算农历日期
|
1月前
|
数据处理 Python
Python编程-利用datetime模块生成当前年份之前指定的间隔所有年份的日期列表和csv文件
Python编程-利用datetime模块生成当前年份之前指定的间隔所有年份的日期列表和csv文件
|
2月前
|
数据挖掘 索引 Python
# Python 判断入参日期是周几
# Python 判断入参日期是周几 原创
|
1月前
|
调度 开发者 Python
python超详细的日期操作【建议收藏备用】
python超详细的日期操作【建议收藏备用】
15 0
|
1月前
|
Python
使用python计算两个日期之前的相差天数,周数
使用python计算两个日期之前的相差天数,周数
35 0
|
6月前
|
调度 Python
Python 日期
Python 日期
43 0
|
2月前
|
数据挖掘 索引 Python
PYTHON 判断入参日期是周几
PYTHON 判断入参日期是周几