SUPPORT UKRAINE
- Your indifference to the act of cruelty can thrive rogue nations like Russia -
タグ
range
を含むブログ一覧
1
Python Cookbook [Finding the Date Range for the Current Month : その月は何日まで?]
Published 2020年4月18日18:17 by mootaro23
Problem:
ある月の全ての日を簡単にループ処理したい。
Solution:
対象となる月の日数分のリストを用意するような必要はありません。
開始日(その月の1日)と終了日(翌月の1日)を取得し、datetime.timedelta オブジェクトを利用してその間を1日ずつループしていきます。
from datetime import datetime, date, ti…
1