Browse Source

Date

pull/3/head
Jure Šorn 5 years ago
parent
commit
cb8cdfc641
1 changed files with 5 additions and 8 deletions
  1. 13
      README.md

13
README.md

@ -315,14 +315,11 @@ random.shuffle(<list>)
Datetime
--------
```python
>>> import datetime
>>> now = datetime.datetime.now()
>>> now.month
3
>>> now.strftime('%Y%m%d')
'20180315'
>>> now.strftime('%Y%m%d%H%M%S')
'20180315002834'
import datetime
now = datetime.datetime.now()
now.month # 3
now.strftime('%Y%m%d') # '20180315'
now.strftime('%Y%m%d%H%M%S') # '20180315002834'
```
Arguments

Loading…
Cancel
Save