2020年第十一届蓝桥杯 - 省赛 - Python大学组 - C.跑步锻炼
生活随笔
收集整理的這篇文章主要介紹了
2020年第十一届蓝桥杯 - 省赛 - Python大学组 - C.跑步锻炼
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Ideas
Python日期計算,判斷周初月初就歐克啦。
Code
Python
from datetime import date from datetime import timedeltaif __name__ == '__main__':start = date(2000, 1, 1)end = date(2020, 10, 2)res = 0while start < end:res += 2 if start.day == 1 or start.weekday() == 0 else 1start += timedelta(days=1)print(res)Answer:8879
總結
以上是生活随笔為你收集整理的2020年第十一届蓝桥杯 - 省赛 - Python大学组 - C.跑步锻炼的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用 Carla 和 Python 的自
- 下一篇: 2019年第十届蓝桥杯 - 省赛 - C