import json
with open('output.json', encoding='utf-8') as json_file:
output = json.loads(json_file.read())
feeds = []
for feed in output ['posts']:
feeds.append (feed)
print (feeds[1]['title'])
我正在尝试仅打印数据的前10行。我尝试了“枚举”和其他代码,但似乎都没有用。关于如何仅获取输出的前10个标题的任何想法?
答案 0 :(得分:2)
使用excludeBranches
作为切片将使您达到前10个元素:
[:10]