import webbrowser
webbrowser.open_new_tab('www.google.com')
I am using Google-colaboratory and getting False as a output. Instead of that, it should open a new tab with url of Google. It's working well in python 3.7 as well as in PyCharm.
I know that program written in colab runs on google cloud and there's nothing like browser in google cloud.
Is there any other way to do this in google-colab except by using selenium tools?
Thanks in Advance!