SUPPORT UKRAINE
- Your indifference to the act of cruelty can thrive rogue nations like Russia -
タグ
dateutil
を含むブログ一覧
1
Python Cookbook [Determining Last Friday's Date : 前の金曜日は何日?]
Published 2020年4月16日19:16 by mootaro23
Problem : 直前のある曜日 (例えば前の金曜日とか) が何日だったかを知りたい。
Solution : Python の datetime モジュールには、こういった際の計算に使用できるユーティリティ関数やクラスが含まれています。
それらを利用して次のような関数を用意することが一般的な対処方法でしょう。
from datetime import datetime…
Python Cookbook [Converting Days to Seconds, and Other Basic Time Conversions : 日付の秒数への変換、及び、他の基本的な日時変換]
Published 2020年4月14日21:14 by mootaro23
# Problem:
# 日付を秒数、分数、時間に変換するような単純な日時変換を行いたい。
# Solution:
# 異なる時間ユニット間の変換や計算には datetime モジュールを利用します。
# 例えば、2つの時間の差などの時間間の計算を実行したければ timedeltaオブジェクトを使用します。
from datetime import timedelta
a…
1