您好,當我學習Python的我被阻以下問題,我一直在嘗試,通過現場沒有人對一些解決方案工程至今。當我編譯時,它返回我:字符串索引必須是整數。 你能幫我嗎?謝謝。蟒蛇JSON錯誤:字符串索引必須是整數
import json
import urllib
url = raw_input('Enter location: ')
uh = urllib.urlopen(url)
data = uh.read()
print 'Retrieving', url
print 'Retrieved', len(data), 'characters'
info = json.loads(data)
#print 'User count:', len(info)
s = 0
for item in info:
print item["comments"]["count"]
URL包括像這樣
{
"note":"This file contains the sample data for testing",
"comments":[
{
"name":"Romina",
"count":97
},
{
"name":"Laurie",
"count":97
},
{
"name":"Bayli",
"count":90
},
{
"name":"Siyona",
"count":90
},
{
"name":"Taisha",
"count":88
},
{
"name":"Ameelia",
"count":87
},}
非常感謝!我之前不明白 –
歡迎。你也可以用不同的方式提取這些類型的值。如果你想我可以編輯我的答案。 –