开发者社区> 问答> 正文

Python:在纯时间对象中添加分钟或秒

我需要向没有日期部分的Time对象添加给定的分钟或秒数。 我的代码:

from datetime import timedelta

d = timedelta(minutes=30)
calendar_entry + d  #calendar_entry is a time object HH:MM:SS

错误:

During handling of the above exception (unsupported operand type(s) 
for +: 'datetime.time' and 'datetime.timedelta'), another exception 
occurred:  

在python3中怎么做呢? 问题来源StackOverflow 地址:/questions/59465525/python-add-minutes-or-seconds-to-a-time-only-object

展开
收起
kun坤 2019-12-25 16:11:11 420 0
1 条回答
写回答
取消 提交回答
  • import datetime
    
    date = datetime.datetime.strptime('15:57:12', '%H:%M:%S')
    print(date.strftime('%H:%M:%S'))
    date = date+datetime.timedelta(seconds=1800)
    print(date.strftime('%H:%M:%S'))
    date = date+datetime.timedelta(minutes=30)
    print(date.strftime('%H:%M:%S'))
    

    输出:

    15:57:12
    16:27:12
    16:57:12
    
    2019-12-25 17:00:32
    赞同 展开评论 打赏
问答分类:
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载