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