strftime
[6] strptime, https://pubs.opengroup.org/onlinepubs/9699919799/functions/strptime.html
[3] 今のところ、信頼できる典拠で確認したものではありません。
%A | 1*ALPHA | 曜日 | Tuesday |
%a | 3ALPHA | 曜日 | Tue |
%B | 1*ALPHA | 月 | January |
%b | 3ALPHA | 月 | Jan |
%c | %a %x %X | ||
%D | %m/%d/%y | ||
%D | 2DIGIT | 年上2桁 | 20 |
%d | 2DIGIT | 日 | 01 |
%e | SP DIGIT / 2DIGIT | 日 | 1 |
%H | 2DIGIT | 時(24) | 01 |
%I | 2DIGIT | 時(12) | 01 |
%j | 3DIGIT | 1月1日からの日数 | 001 |
%k | SP DIGIT / 2DIGIT | 時 | 1 |
%p | 'AM'/'PM' | 午前か午後か | AM |
%M | 2DIGIT | 分 | 01 |
%m | 2DIGIT | 月 | 01 |
%n | LF | 改行 | |
%% | % | パーセント | % |
%R | %H:%M | ||
%r | %I:%M:%S %p | ||
%S | 2DIGIT | 秒 | 01 |
%T | %H:%M:%S | ||
%t | HT | 水平タブ | |
%U | 2DIGIT | 週番号 (年初日曜日=01週第1日) | |
%W | 2DIGIT | 週番号 (年初月曜日=01週第1日) | |
%w | DIGIT | 曜日 (日曜日=0) | 2 |
%X | %H:%M:%S | ||
%x | %m/%d/%y | ||
%Y | 4DIGIT | 年 | 2002 |
%y | 2DIGIT | 年 | 02 |
%Z | 3*ALPHA | 時間帯 | GMT |
[7] datetime — Basic date and time types — Python 3.12.0 documentation, , https://docs.python.org/3/library/datetime.html#strftime-and-strptime-behavior
date
[5] date, https://pubs.opengroup.org/onlinepubs/000095399/utilities/date.html#tag_04_33_05
[137] X/Open の推奨: 00〜68 → +2000, 69〜99 → +1900 を推奨しているらしいです。
[536] date, , https://pubs.opengroup.org/onlinepubs/000095399/utilities/date.html
If century is not specified, then values in the range [69,99] shall refer to years 1969 to 1999 inclusive, and values in the range [00,68] shall refer to years 2000 to 2068 inclusive.
Note:
It is expected that in a future version of IEEE Std 1003.1-2001 the default century inferred from a 2-digit year will change. (This would apply to all commands accepting a 2-digit year as input.)