2017年10月9日 星期一

[ Python 常見問題 ] How to get the date N days ago in Python

Source From Here 
Below will use datetime & timedelta to get the date N days ago: 
>>> from datetime import datetime, timedelta 
>>> N = 2 // Calculate 2 days ago from now on 
>>> date_N_days_ago = datetime.now() - timedelta(days=N) 
>>> print datetime.now() 
2017-10-10 12:22:18.817720 
>>> print date_N_days_ago 
2017-10-08 12:22:07.384718


沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...