In the docs of the strftime() and strptime() behavior laid out list of format codes. How does datetime store it? Can i get access to it?
I mean, when i use strptime(date_string, format), its somehow handle 'format' string, so, it has to know how to associate, say, '%d' to a range of integers '01, 02, …, 31' as it described in docs. So, how does it store those associations and can i get access to them?
From the documentation:
On Linux and macOS, you can run
man strftime
to see the supported format codes.The documentation includes a table of standard format codes:
Update
In response to your comment below, the format codes are part of the C library for the platform. I know of no way to access them from Python.