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

Python时间处理

时间:2018-05-21 12:19:37      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:要求   done   javascrip   mes   python3   def   return   img   col   

1、问题:

  编写一个函数,要求输入年月日时分秒,输出该年月日时分秒的下一秒。如输入2004年12月31日23时59分59秒,则输出2005年1月1日0时0分0秒。 

  (c/c++、Java、Javascript、C#、Python)

2、python代码:

#!/usr/bin/python3

import datetime

def addOneSecond(timeStr):
    d1 = datetime.datetime.strptime(timeStr, "%Y-%m-%d %H:%M:%S")

    d1 = d1 + datetime.timedelta(seconds=1)

    rtn = d1.strftime("%Y-%m-%d %H:%M:%S")
    return rtn


dtime = addOneSecond("2014-12-31 23:59:59")
print(dtime)

运行结果:

技术分享图片

3、

 

Python时间处理

标签:要求   done   javascrip   mes   python3   def   return   img   col   

原文地址:https://www.cnblogs.com/sshoub/p/9065940.html

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