时间差

作者: ckawyh | 来源:发表于2019-04-24 18:20 被阅读0次
    def time_diff(close_time_str, open_time_str):
        """计算关闭时间与打开时间的时间差"""
        if close_time_str == '':
            return None
        ct_date = datetime.datetime.strptime(close_time_str, '%Y-%m-%d %H:%M:%S')
        ot_date = datetime.datetime.strptime(open_time_str, '%Y-%m-%d %H:%M:%S')
        minutes = (ct_date-ot_date).seconds/60
        return round(minutes, 2)
    

    相关文章

      网友评论

          本文标题:时间差

          本文链接:https://www.haomeiwen.com/subject/vzkngqtx.html