打印我的Feed的前10行

时间:2018-08-15 02:07:24

标签: python json feeds

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个标题的任何想法?

1 个答案:

答案 0 :(得分:2)

使用excludeBranches作为切片将使您达到前10个元素:

[:10]