python - datetime时间相加

python 计算两个datetime之间的秒数

  
  
    
    
    
    
from datetime import datetime
d1 = datetime(2009,2,12)
d2 = datetime(2009,2,20)
print (d2-d1).seconds


python datetime加上十分钟

  
  
    
    
    
    
from datetime import datetime,timedelta
d1 = datetime.now()
d2 = d1+timedelta(minutes=10)
print d2


你可能感兴趣的:(python,+,django,python)