2020年第十一届蓝桥杯 - 省赛 - Python大学组 - C.跑步锻炼
Posted Alex_996
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2020年第十一届蓝桥杯 - 省赛 - Python大学组 - C.跑步锻炼相关的知识,希望对你有一定的参考价值。
Ideas
Python日期计算,判断周初月初就欧克啦。
Code
Python
from datetime import date
from datetime import timedelta
if __name__ == '__main__':
start = date(2000, 1, 1)
end = date(2020, 10, 2)
res = 0
while start < end:
res += 2 if start.day == 1 or start.weekday() == 0 else 1
start += timedelta(days=1)
print(res)
Answer:8879
以上是关于2020年第十一届蓝桥杯 - 省赛 - Python大学组 - C.跑步锻炼的主要内容,如果未能解决你的问题,请参考以下文章
2020年第十一届蓝桥杯 - 省赛 - Python大学组 - C.跑步锻炼