如何用python编写一个函数,要求输入年月日时分秒,输出该年月日时分秒的下一秒。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用python编写一个函数,要求输入年月日时分秒,输出该年月日时分秒的下一秒。相关的知识,希望对你有一定的参考价值。

如输入2004年12月31日23时59分59秒,则输出2005年1月1日0时0分0秒

def next_sec(timestr):
    from datetime import datetime, timedelta
    time_format = '%Y-%m-%d %H:%M:%S'
    time_now = datetime.strptime(timestr, time_format)
    time_next_sec = time_now + timedelta(seconds=1)
    return time_next_sec.strftime(time_format)

print(next_sec('2004-12-31 23:59:59'))

参考技术A from datetime import timedelta
from dateutil import parser

def ns(strdatetime):
    datetime_struct = parser.parse(strdatetime)
    nextSecond = datetime_struct + timedelta(seconds=1)
    return nextSecond

print(ns('2004-12-31 23:59:59'))

追问

还有不用模块的方法吗

追答

不用模块就要自行处理平年闰年,自行处理时间进制,一个头两个大。

Python时间处理

问题:编写一个函数,要求输入年月日时分秒,输出该年月日时分秒的下一秒。如输入2004年12月31日23时59分59秒,则输出2005年1月1日0时0分0秒。 (c/c++、Java、Javascript、C#、Python)

1、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)

2、

 

以上是关于如何用python编写一个函数,要求输入年月日时分秒,输出该年月日时分秒的下一秒。的主要内容,如果未能解决你的问题,请参考以下文章

百战c++(12)

百战c++(12)

百战c++(12)

百战c++(12)

用python编写一程序?

如何提取excel单元格中的年月日,时分秒。其中,单元格格式中,数字选项卡的分类为常规。