misc.py 文件源码

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

项目:packaging 作者: blockstack 项目源码 文件源码
def __or__(self, other):
        '''Union is the maximum of value in either of the input counters.

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

        '''
        if not isinstance(other, Counter):
            return NotImplemented
        result = Counter()
        for elem, count in self.items():
            other_count = other[elem]
            newcount = other_count if count < other_count else count
            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
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号