python - dict.setdefault

Posted

tags:

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

index = dict.serdefault(key,default)

尝试往dict中插入新键值key,如果key已存在就原dict不变,否则插入key:defalut;返回值为key在dict中的下标

可以用来实现稀疏矩阵https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.csr_matrix.html

>>> docs = [["hello", "world", "hello"], ["goodbye", "cruel", "world"]]
>>> indptr = [0]
>>> indices = []
>>> data = []
>>> vocabulary = {}
>>> for d in docs:
...     for term in d:
...         index = vocabulary.setdefault(term, len(vocabulary))
...         indices.append(index)
...         data.append(1)
...     indptr.append(len(indices))
...
>>> csr_matrix((data, indices, indptr), dtype=int).toarray()
array([[2, 1, 0, 0],
       [0, 1, 1, 1]])

 

以上是关于python - dict.setdefault的主要内容,如果未能解决你的问题,请参考以下文章

Python3基础 dict setdefault 根据键查找值,找不到键会添加

Python3基础 dict setdefault 根据键查找值,找不到键会添加

Python3 字典 setdefault() 方法

python基础之字典dict

Dict.setdefault()

Python 字典 setdefault() 方法