python-获得当前时间的前一天(或前一秒)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-获得当前时间的前一天(或前一秒)相关的知识,希望对你有一定的参考价值。
获得当前时间的前一天(或前一秒)
如果当前时间为: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-获得当前时间的前一天(或前一秒)的主要内容,如果未能解决你的问题,请参考以下文章