Aug-27-2017, 10:40 PM
I use python 3.6.2 and need to open different web page in the same tab but it always open in a new tab. Is it possible? Thanks.
import time
import webbrowser
webbrowser.open('https://www.google.com',new=0)
time.sleep(5)
webbrowser.open('http://www.yahoo.com',new=0)
