标签: python datetime
现在如何使用isoformat获得x天前的数据?这就是我所拥有的
from datetime import datetime, timedelta print datetime.now().isoformat() - timedelta(days=2)