码迷,mamicode.com
首页 > 编程语言 > 详细

python - dict.setdefault

时间:2017-04-15 00:28:26      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:target   返回   generate   oca   append   type   matrix   http   插入   

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

标签:target   返回   generate   oca   append   type   matrix   http   插入   

原文地址:http://www.cnblogs.com/liziran/p/6711229.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!