📜  datetime am pm python 代码示例

📅  最后修改于: 2022-03-11 14:46:32.590000             🧑  作者: Mango

代码示例1
The format is using %H instead of %I. Since %H is the "24-hour" format,
it's likely just discarding the %p information.
It works just fine if you change the %H to %I.

format = '%Y-%m-%d %H:%M %p'