Date difference in minutes in Python

后端 未结 11 1383
谎友^
谎友^ 2020-11-28 23:03

How do I calculate the difference in time in minutes for the following timestamp in Python?

2010-01-01 17:31:22
2010-01-03 17:31:22
11条回答
  •  日久生厌
    2020-11-28 23:37

    In Other ways to get difference between date;

    import dateutil.parser
    import datetime
    
    timeDifference = current_date - dateutil.parser.parse(last_sent_date)
    time_difference_in_minutes = (int(timeDifference.days) * 24 * 60) + int((timeDifference.seconds) / 60)
    

    Thanks

提交回复
热议问题