misc.py 文件源码

python
阅读 27 收藏 0 点赞 0 评论 0

项目:packaging 作者: blockstack 项目源码 文件源码
def __add__(self, other):
        '''Add counts from two counters.

        >>> Counter('abbb') + Counter('bcc')
        Counter({'b': 4, 'c': 2, 'a': 1})

        '''
        if not isinstance(other, Counter):
            return NotImplemented
        result = Counter()
        for elem, count in self.items():
            newcount = count + other[elem]
            if newcount > 0:
                result[elem] = newcount
        for elem, count in other.items():
            if elem not in self and count > 0:
                result[elem] = count
        return result
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号