用python截取考试日期的月份,判断月份是今年的第几个月份
时间: 2024-03-27 08:38:20 浏览: 38
好的,以下是您需要的代码:
```python
# 请在下方输入您的考试日期
exam_date = input("请输入考试日期,格式为 YYYY-MM-DD:")
# 截取考试日期的月份
month = exam_date.split("-")[1]
# 将月份转换为整数
month = int(month)
# 获取当前时间的月份
import datetime
now_month = datetime.datetime.now().month
# 判断月份是今年的第几个月份
if month > now_month:
print("考试日期在今年的第 %d 个月份之后" % now_month)
elif month < now_month:
print("考试日期在今年的第 %d 个月份之前" % now_month)
else:
print("考试日期就在本月!")
```
请将以上代码复制并粘贴到您的 Python 环境中运行,然后按照提示输入您的考试日期即可。程序会将输入的日期截取出月份,并与当前时间的月份进行比较,最后输出判断结果。
阅读全文