Quantcast
Channel: printing first 10 lines of my feed - Stack Overflow
Viewing all articles
Browse latest Browse all 2

Answer by Alex Taylor for printing first 10 lines of my feed

$
0
0

Using [:10] as a slice will get you up to the first 10 elements:

import jsonwith open('output.json', encoding='utf-8') as json_file:      output = json.loads(json_file.read())feeds = []for feed in output ['posts'][:10]: #   <---- Change on this line    feeds.append (feed)print (feeds[1]['title'])

Viewing all articles
Browse latest Browse all 2

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>