dictLength = len(newDict['SrchResults'])
大家好,我想知道这个['SrchResults']是什么意思。它有什么作用? 我明白len(newDict)为newDict提供字典的总长度。
答案 0 :(得分:1)
dictionary[key]
是您访问给定字典值的方式。例如,如果我有:
newDict = {'SrchResults':['one', 'two', 'three']}
然后newDict['SrchResults']
会返回['one', 'two', 'three']
。
然后len()
获取密钥'SrchResults'