当前位置:   article > 正文

Python的字典使用_python 使用字典

python 使用字典

今天做力扣上1207. 独一无二的出现次数添加链接描述时用到了python字典,于是把字典的用法整理了一下。

新建字典

iters = {}
  • 1

检查字典中是否含有某一个键

iters.has_key(key)
  • 1

字典根据键访问值

iters[key]
  • 1

遍历字典的键和值

for key,value in iters.items():
  • 1

整体代码

class Solution(object):
    def uniqueOccurrences(self, arr):
        """
        :type arr: List[int]
        :rtype: bool
        """
        iters = {}
        for i in arr:
            if iters.has_key(i):
                iters[i] = iters[i] + 1
            else:
                iters[i] = 1
        temp = []
        for key,value in iters.items():
            temp.append(value)
        new_temp = set(temp)
        if len(temp)==len(new_temp):
            return True
        else:
            return False
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/714522
推荐阅读
相关标签
  

闽ICP备14008679号