我不知何故陷入了逻辑思维。
我将比较这两个州的日期:
- 夏季学期(16.04 开始 - 14.10 结束)
- 冬季学期(15.10 开始 - 15.04 结束)
包括假期
我如何查看本月/日的哪个学期?
current_month = datetime.datetime.now().month
current_year = datetime.datetime.now().year
current_day = datetime.datetime.now().day
if current_month>=10 and current_day>=15:
#winter semester
但我不知何故这样做太混乱了。是否有任何 python lib 用于我的问题的日期比较?