标签:要求 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、
标签:要求 done javascrip mes python3 def return img col
原文地址:https://www.cnblogs.com/sshoub/p/9065940.html