We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5cfb61 commit b195702Copy full SHA for b195702
README.md
@@ -512,11 +512,15 @@ import pytz
512
513
### Format
514
```python
515
->>> dt = datetime.strptime('2015-06-14 23:39:00.00 +0200', '%Y-%m-%d %H:%M:%S.%f %z')
516
->>> dt.strftime("%a %dth %B '%y, %I:%m%p %Z")
517
-"Sun 14th June '15, 11:06PM UTC+02:00"
+>>> dt = datetime.strptime('2015-05-14 23:39:00.00 +0200', '%Y-%m-%d %H:%M:%S.%f %z')
+>>> dt.strftime("%A %dth %B '%y, %I:%m%p %Z")
+"Thursday 14th May '15, 11:05PM UTC+02:00"
518
```
519
520
+#### Rest of the codes:
521
+* **`'b'` - Month, abbreviated name.**
522
+* **`'a'` - Weekday, abbreviated name.**
523
+
524
525
Arguments
526
---------
0 commit comments