動作検証バージョン:Windows 11 Home + Python 3.10.11
『Excel VBAユーザーのためのPythonプログラミング入門』p.168より
拙著『Excel VBAユーザーのためのPyhonプログラミング入門』の、「第9章-03 datetimeモジュールで今日の日付を取得する」でPythonで日付や時刻を処理するときに使用するdatetimeモジュールについて少しだけ解説しています。
Pythonのdatetimeモジュールに用意されている、datetimeクラスは、基本的にはdateクラスとtimeクラスをマージしたものですが、微妙な違いもあります。
[スポンサードリンク]
それぞれがどのような属性を持っているかを比較するための一覧を作成しておきます。
datetimeクラス | dateクラス | timeクラス |
---|---|---|
astimezone | - | - |
combine | - | - |
ctime | ctime | - |
date | - | - |
day | day | - |
dst | - | dst |
fold | - | fold |
fromisocalendar | fromisocalendar | - |
fromisoformat | fromisoformat | fromisoformat |
fromordinal | fromordinal | - |
fromtimestamp | fromtimestamp | - |
hour | - | hour |
isocalendar | isocalendar | - |
isoformat | isoformat | isoformat |
isoweekday | isoweekday | - |
max | max | max |
microsecond | - | microsecond |
min | min | min |
minute | - | minute |
month | month | - |
now | - | - |
replace | replace | replace |
resolution | resolution | resolution |
second | - | second |
strftime | strftime | strftime |
strptime | - | - |
time | - | - |
timestamp | - | - |
timetuple | timetuple | - |
timetz | - | - |
today | today | - |
toordinal | toordinal | - |
tzinfo | - | tzinfo |
tzname | - | tzname |
utcfromtimestamp | - | - |
utcnow | - | - |
utcoffset | - | utcoffset |
utctimetuple | - | - |
weekday | weekday | - |
year | year | - |
[スポンサードリンク]
- Newer:Windows11のバージョンを確認する
- Older:VBAの2進数リテラルについてChatGPTに質問したら……