我很擅长使用PHP并尝试学习Python。所以请原谅我,如果我试图按字面意思翻译函数,但这就是我所拥有的:
import json
import urllib
url='http://www.example.com/sample.json'
f = urllib.urlopen(url)
data = json.loads(f.read())
for item in data:
for entry in item:
print dictionary.keys(entry)
我知道item
有类型字典,因为我做了print type(item)
。但是当我尝试运行上面的代码时,我得到NameError: name 'dictionary' is not defined
- 我是否需要导入一个定义字典函数的库?如果是这样,哪个库?
答案 0 :(得分:9)