0
How to browse using python?
# If I write the code import os os.system('chrome sololearn app') # Chrome searches sololearn/ # I want Chrome to search sololearn
4 RĂ©ponses
+ 1
import os
browse=input ()
browse=browse.replace(' ','%20')
os.system('chrome www.google.com/search?q='+browse)
Answered myself đ
+ 1
You want to use web scrapping using python.. refer to this
https://realpython.com/python-web-scraping-practical-introduction/