码迷,mamicode.com
首页 > 编程语言 > 详细

python-获得当前时间的前一天(或前一秒)

时间:2017-04-12 21:18:12      阅读:2386      评论:0      收藏:0      [点我收藏+]

标签:code   odi   now()   span   color   打印   cti   port   返回   

获得当前时间的前一天(或前一秒)


如果当前时间为:2014-6-11 17:12:45
    前一天为:2014-6-10 17:12:45
    前一秒为:2014-6-11 17:12:44

#coding=utf-8
import time
import datetime

print time.ctime()        //打印当前时间

now_time = datetime.datetime.now()       //返回的是本地时区的当前时间
print now_time

yesterday = now_time + datetime.timedelta(days = -1)    //昨天的现在
print yesterday

now_old = now_time + datetime.timedelta(seconds = -1)    //现在的前一秒
print now_old

运行结果:
  Wed Jun 11 17:21:07 2014
  2014-06-11 17:21:07.750000
  2014-06-10 17:21:07.750000
  2014-06-11 17:21:06.750000


python-获得当前时间的前一天(或前一秒)

标签:code   odi   now()   span   color   打印   cti   port   返回   

原文地址:http://www.cnblogs.com/sunziying/p/6701388.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!