python获取下月的第一天


要获取下个月的第一天,您可以使用 Python 的 datetime 模块。以下是获取下个月第一天的示例代码:

pythonCopy codeimport datetime

# 获取当前日期
now = datetime.datetime.now()

# 计算下个月的年份和月份
if now.month == 12:
    next_month_year = now.year + 1
    next_month_month = 1
else:
    next_month_year = now.year
    next_month_month = now.month + 1

# 获取下个月的第一天
next_month_first_day = datetime.datetime(next_month_year, next_month_month, 1)

# 打印结果
print(next_month_first_day)

这将输出下个月的第一天的日期时间对象。您可以使用 strftime() 方法将其格式化为您想要的日期格式。


原文链接:codingdict.net