我得到了實現此代碼我需要:如何從Python中的json文件獲取字典?
import json
json_data = []
with open("trendingtopics.json") as json_file:
json_data = json.load(json_file)
for category in json_data:
print category
for trendingtopic in category:
print trendingtopic
,這是我的JSON文件:
{
"General": ["EPN","Peña Nieto", "México","PresidenciaMX"],
"Acciones politicas": ["Reforma Fiscal", "Reforma Energética"]
}
但是我得到這個印刷:
Acciones politicas
A
c
c
i
o
n
e
s
p
o
l
i
t
i
c
a
s
General
G
e
n
e
r
a
l
我想得到一個字典正在按鍵並獲得一個列表作爲值。然後遍歷它。我怎樣才能做到這一點?
您的意思是「爲趨勢json_data [category]中的主題:'在你的內部循環中? –