python中的get函数

Posted Aaron12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的get函数相关的知识,希望对你有一定的参考价值。

get()函数作用

以classCount.get(voteIlabel,0)为例:
classCount.get(voteIlabel,0)返回字典classCount中voteIlabel元素对应的值,若无,则进行初始化

  • 若不存在voteIlabel,则字典classCount中生成voteIlabel元素,并使其对应的数字为0,即
    classCount = {voteIlabel:0}
    此时classCount.get(voteIlabel,0)作用是检测并生成新元素,括号中的0只用作初始化,之后再无作用

  • 当字典中有voteIlabel元素时,classCount.get(voteIlabel,0)作用是返回该元素对应的值,即0

以书中代码为例:
classCount[voteIlabel] = classCount.get(voteIlabel,0) + 1;

  • 初始化classCount = {}时,此时输入classCount,输出为:

    classCount = {}

  • 当第一次遇到新的label时,将新的label添加到字典classCount,并初始化其对应数值为0
    然后+1,即该label已经出现过一次,此时输入classCount,输出为:

    classCount = {voteIlabel:1}

  • 当第二次遇到同一个label时,classCount.get(voteIlabel,0)返回对应的数值(此时括号内的0不起作用,因为已经初始化过了),然后+1,此时输入classCount,输出为:

    classCount = {voteIlabel:2}

可以看出,+1是每一次都会起作用的,因为不管遇到字典内已经存在的或者不存在的,都需要把这个元素记录下来







以上是关于python中的get函数的主要内容,如果未能解决你的问题,请参考以下文章

使用LDA时python中的get_coherence()函数错误

装饰器中的 Python Access 函数变量

python使用sklearn中的DictVectorizer函数将字典数据(dictionary)转化为numpy数组使用get_feature_names函数获取数组指定列位置的标签信息

python中字典的get方法疑问?

python--django之视图函数

python中get函数用法