设为首页 收藏本站
查看: 768|回复: 0

[经验分享] Python学习第三天

[复制链接]

尚未签到

发表于 2018-8-14 10:01:26 | 显示全部楼层 |阅读模式
class Counter(dict):    '''Dict subclass for counting hashable items.  Sometimes called a bag  or multiset.  Elements are stored as dictionary keys and their counts
  are stored as dictionary values.
  >>> c = Counter('abcdeabcdabcaba')  # count elements from a string
  >>> c.most_common(3)                # three most common elements
  [('a', 5), ('b', 4), ('c', 3)]
  >>> sorted(c)                       # list all unique elements
  ['a', 'b', 'c', 'd', 'e']
  >>> ''.join(sorted(c.elements()))   # list elements with repetitions
  'aaaaabbbbcccdde'
  >>> sum(c.values())                 # total of all counts
  15
  >>> c['a']                          # count of letter 'a'
  5
  >>> for elem in 'shazam':           # update counts from an iterable
  ...     c[elem] += 1                # by adding 1 to each element's count
  >>> c['a']                          # now there are seven 'a'
  7
  >>> del c['b']                      # remove all 'b'
  >>> c['b']                          # now there are zero 'b'
  0
  >>> d = Counter('simsalabim')       # make another counter
  >>> c.update(d)                     # add in the second counter
  >>> c['a']                          # now there are nine 'a'
  9
  >>> c.clear()                       # empty the counter
  >>> c
  Counter()
  Note:  If a count is set to zero or reduced to zero, it will remain
  in the counter until the entry is deleted or the counter is cleared:
  >>> c = Counter('aaabbc')
  >>> c['b'] -= 2                     # reduce the count of 'b' by two
  >>> c.most_common()                 # 'b' is still in, but its count is zero
  [('a', 3), ('c', 1), ('b', 0)]    '''
  # References:
  #   http://en.wikipedia.org/wiki/Multiset
  #   http://www.gnu.org/software/smalltalk/manual-base/html_node/Bag.html
  #   http://www.demo2s.com/Tutorial/Cpp/0380__set-multiset/Catalog0380__set-multiset.htm
  #   http://code.activestate.com/recipes/259174/
  #   Knuth, TAOCP Vol. II section 4.6.3
  def __init__(*args, **kwds):        '''Create a new, empty Counter object.  And if given, count elements
  from an input iterable.  Or, initialize the count from another mapping
  of elements to their counts.
  >>> c = Counter()                           # a new, empty counter
  >>> c = Counter('gallahad')                 # a new counter from an iterable
  >>> c = Counter({'a': 4, 'b': 2})           # a new counter from a mapping
  >>> c = Counter(a=4, b=2)                   # a new counter from keyword args        '''
  if not args:            raise TypeError("descriptor '__init__' of 'Counter' object "
  "needs an argument")
  self, *args = args        if len(args) > 1:            raise TypeError('expected at most 1 arguments, got %d' % len(args))
  super(Counter, self).__init__()
  self.update(*args, **kwds)    def __missing__(self, key):        'The count of elements not in the Counter is zero.'
  # Needed so that self[missing_item] does not raise KeyError
  return 0    def most_common(self, n=None):        '''List the n most common elements and their counts from the most
  common to the least.  If n is None, then list all element counts.
  >>> Counter('abcdeabcdabcaba').most_common(3)
  [('a', 5), ('b', 4), ('c', 3)]        '''
  # Emulate Bag.sortedByCount from Smalltalk
  if n is None:            return sorted(self.items(), key=_itemgetter(1), reverse=True)        return _heapq.nlargest(n, self.items(), key=_itemgetter(1))    def elements(self):        '''Iterator over elements repeating each as many times as its count.
  #列出所有元素
  >>> c = Counter('ABCABC')
  >>> sorted(c.elements())
  ['A', 'A', 'B', 'B', 'C', 'C']
  # Knuth's example for prime factors of 1836:  2**2 * 3**3 * 17**1
  >>> prime_factors = Counter({2: 2, 3: 3, 17: 1})
  >>> product = 1
  >>> for factor in prime_factors.elements():     # loop over factors
  ...     product *= factor                       # and multiply them
  >>> product
  1836
  Note, if an element's count has been set to zero or is a negative
  number, elements() will ignore it.        '''
  # Emulate Bag.do from Smalltalk and Multiset.begin from C++.
  return _chain.from_iterable(_starmap(_repeat, self.items()))    # Override dict methods where necessary
  @classmethod    def fromkeys(cls, iterable, v=None):        # There is no equivalent method for counters because setting v=1
  # means that no element can have a count greater than one.
  raise NotImplementedError(            'Counter.fromkeys() is undefined.  Use Counter(iterable) instead.')    def update(*args, **kwds):#更新数据>>> a = collections.Counter(["11","22","33"])
  a.update(["alex"])>>> print(a)
  Counter({'11': 1, '33': 1, '22': 1, 'alex': 1})        '''Like dict.update() but add counts instead of replacing them.
  Source can be an iterable, a dictionary, or another Counter instance.
  >>> c = Counter('which')
  >>> c.update('witch')           # add elements from another iterable
  >>> d = Counter('watch')
  >>> c.update(d)                 # add elements from another counter
  >>> c['h']                      # four 'h' in which, witch, and watch
  4        '''
  # The regular dict.update() operation makes no sense here because the
  # replace behavior results in the some of original untouched counts
  # being mixed-in with all of the other counts for a mismash that
  # doesn't have a straight-forward interpretation in most counting
  # contexts.  Instead, we implement straight-addition.  Both the inputs
  # and outputs are allowed to contain zero and negative counts.
  if not args:            raise TypeError("descriptor 'update' of 'Counter' object "
  "needs an argument")
  self, *args = args        if len(args) > 1:            raise TypeError('expected at most 1 arguments, got %d' % len(args))
  iterable = args[0] if args else None        if iterable is not None:            if isinstance(iterable, Mapping):                if self:
  self_get = self.get                    for elem, count in iterable.items():
  self[elem] = count + self_get(elem, 0)                else:
  super(Counter, self).update(iterable) # fast path when counter is empty
  else:
  _count_elements(self, iterable)        if kwds:
  self.update(kwds)    def subtract(*args, **kwds):#删除
  '''Like dict.update() but subtracts counts instead of replacing them.
  Counts can be reduced below zero.  Both the inputs and outputs are
  allowed to contain zero and negative counts.
  Source can be an iterable, a dictionary, or another Counter instance.
  >>> c = Counter('which')
  >>> c.subtract('witch')             # subtract elements from another iterable
  >>> c.subtract(Counter('watch'))    # subtract elements from another counter
  >>> c['h']                          # 2 in which, minus 1 in witch, minus 1 in watch
  0
  >>> c['w']                          # 1 in which, minus 1 in witch, minus 1 in watch
  -1        '''
  if not args:            raise TypeError("descriptor 'subtract' of 'Counter' object "
  "needs an argument")
  self, *args = args        if len(args) > 1:            raise TypeError('expected at most 1 arguments, got %d' % len(args))
  iterable = args[0] if args else None        if iterable is not None:
  self_get = self.get            if isinstance(iterable, Mapping):                for elem, count in iterable.items():
  self[elem] = self_get(elem, 0) - count            else:                for elem in iterable:
  self[elem] = self_get(elem, 0) - 1        if kwds:
  self.subtract(kwds)    def copy(self):        'Return a shallow copy.'
  return self.__class__(self)    def __reduce__(self):        return self.__class__, (dict(self),)    def __delitem__(self, elem):        'Like dict.__delitem__() but does not raise KeyError for missing values.'
  if elem in self:
  super().__delitem__(elem)    def __repr__(self):        if not self:            return '%s()' % self.__class__.__name__
  try:
  items = ', '.join(map('%r: %r'.__mod__, self.most_common()))            return '%s({%s})' % (self.__class__.__name__, items)        except TypeError:            # handle case where values are not orderable
  return '{0}({1!r})'.format(self.__class__.__name__, dict(self))    # Multiset-style mathematical operations discussed in:
  #       Knuth TAOCP Volume II section 4.6.3 exercise 19
  #       and at http://en.wikipedia.org/wiki/Multiset
  #    # Outputs guaranteed to only include positive counts.
  #    # To strip negative and zero counts, add-in an empty counter:
  #       c += Counter()
  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    def __sub__(self, other):        ''' Subtract count, but keep only results with positive counts.
  >>> Counter('abbbc') - Counter('bccd')
  Counter({'b': 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] = 0 - count        return result    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    def __and__(self, other):        ''' Intersection is the minimum of corresponding counts.
  >>> Counter('abbb') & Counter('bcc')
  Counter({'b': 1})        '''
  if not isinstance(other, Counter):            return NotImplemented
  result = Counter()        for elem, count in self.items():
  other_count = other[elem]
  newcount = count if count < other_count else other_count            if newcount > 0:
  result[elem] = newcount        return result    def __pos__(self):        'Adds an empty counter, effectively stripping negative and zero counts'
  result = Counter()        for elem, count in self.items():            if count > 0:
  result[elem] = count        return result    def __neg__(self):        '''Subtracts from an empty counter.  Strips positive and zero counts,
  and flips the sign on negative counts.        '''
  result = Counter()        for elem, count in self.items():            if count < 0:
  result[elem] = 0 - count        return result    def _keep_positive(self):        '''Internal method to strip elements with a negative or zero count'''
  nonpositive = [elem for elem, count in self.items() if not count > 0]        for elem in nonpositive:            del self[elem]        return self    def __iadd__(self, other):        '''Inplace add from another counter, keeping only positive counts.
  >>> c = Counter('abbb')
  >>> c += Counter('bcc')
  >>> c
  Counter({'b': 4, 'c': 2, 'a': 1})        '''
  for elem, count in other.items():
  self[elem] += count        return self._keep_positive()    def __isub__(self, other):        '''Inplace subtract counter, but keep only results with positive counts.
  >>> c = Counter('abbbc')
  >>> c -= Counter('bccd')
  >>> c
  Counter({'b': 2, 'a': 1})        '''
  for elem, count in other.items():
  self[elem] -= count        return self._keep_positive()    def __ior__(self, other):        '''Inplace union is the maximum of value from either counter.
  >>> c = Counter('abbb')
  >>> c |= Counter('bcc')
  >>> c
  Counter({'b': 3, 'c': 2, 'a': 1})        '''
  for elem, other_count in other.items():
  count = self[elem]            if other_count > count:
  self[elem] = other_count        return self._keep_positive()    def __iand__(self, other):        '''Inplace intersection is the minimum of corresponding counts.
  >>> c = Counter('abbb')
  >>> c &= Counter('bcc')
  >>> c
  Counter({'b': 1})        '''
  for elem, count in self.items():
  other_count = other[elem]            if other_count < count:
  self[elem] = other_count        return self._keep_positive()

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-551498-1-1.html 上篇帖子: python-MySQLdb接口程序安装 下篇帖子: python购物车-优化版本
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表