Hello guys, Here i am writing a script which will open my chrome browser and opens the URL www.google.com. But how to search for a data via script. for example i need to search for 'Rose' in google.com via script. how to do that?
<python> import webbrowser url="www.google.com" chrome_path = 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe %s' webbrowser.get(chrome_path) webbrowser.open(url) </python> -- https://mail.python.org/mailman/listinfo/python-list