タイトル通りなのですが、日付にある一定の時間を追加する方法を調べました。
SREngine: Sein blog: 【Python】 datetime.dateによる日付の演算
によると、timedeltaオブジェクトを使うことで実現できます。
(ちなみに、timedeltaオブジェクトのリファレンスはこちら)
参考エントリーでは日付の追加だったので、時刻の追加を。
import datetime temp = datetime.datetime(year=2011,month=3,day=19,hour=16) temp = temp + datetime.timedelta(hours=10) temp = temp.strftime("%Y%m%d%H") print temp |
実行すると、2011032002と正常終了しました。
これで、時間の追加には、困らないかなと。
Tweet
0 コメント:
コメントを投稿