I am using webbrowser
to open a URL using Python but the problem is after opening the URL webbrowser
module prints unnecessary output on terminal.
I searched on google but didn't find any useful answer.
Code used:
import webbrowser
webbrowser.open("https://www.google.com/")
I just want to get rid of browser output in terminal not the whole output.