diff --git a/README.md b/README.md index d5b63b6..118725b 100644 --- a/README.md +++ b/README.md @@ -315,14 +315,11 @@ random.shuffle() 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