Answers for "How to detect the user web browser using python"

7

python webbrowser

import webbrowser
url = 'https://www.python.org/'
webbrowser.open_new_tab(url)
webbrowser.open_new(url)
Posted by: Guest on February-03-2021

Code answers related to "How to detect the user web browser using python"

Python Answers by Framework

Browse Popular Code Answers by Language