Question: Python Basic - 1: Exercise-8 with Solution Write a Python program to get the top stories from Google news. Sample Solution Python Code: 1 2

Python Basic - 1: Exercise-8 with Solution Write a Python program to get the top stories from Google news. Sample Solution Python Code: 1 2 import bs4 from bs4 import Beautifulsoup as soup from urllib.request import urlopen 3 4 6 7 8 5 news_url="https:/ews.google.comews/rss Client-urlopen(news_url) xml_page-client.read() Client.close() 9 10 soup_page-soup(xml_page, "xml") 11 news_list-soup_page, findAll("item") 12 # Print news title, url and publish date for news in news_list: 14 print(news.title.text) 15 print(news.link.text) print(news.pubDate. text) print("-"*60) 13 16 17 Sample Output: with Trump in China, Taiwan worries about becoming a "bargaining chip https://www.washingtonpost.com/world/with-trump-in-china-taiwan-worries about becoming abargaining chip/2017/11/09/eedor Thu, 9 Nov 2017 11:19:13 GMT Blue Dog Democrats taking hard line on GOP tax bill http://thehill.com/policy/finance/359515-blue-dog-democrats taking hard-line on-gop.tax bill Thu, 9 Nov 2017 11:01:58 GMT nnn Fither party Explain code clearly Explain how / why it! works
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
