I'm very new to python so I'm a noob at this, I've tried searching but nothing seems to work(at least what I've seen and tested). I have also tried "webbrowser.get(chrome_path).open(url)" which did not really help me. Anyway heres the code
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.action_chains import ActionChains
import webbrowser
#path for the driver
driver = webdriver.Chrome(executable_path="C:\mydriver\chromedriver")
driver.get("https://www.google.com")
driver.execute_script("window.open ('https://www.google.com', 'new window')")
driver.switch_to.window(driver.window_handles[0])
driver.execute_script("window.open ('https://www.bing.com','https://www.facebook.com', 'new window')")
driver.switch_to.window(driver.window_handles[1])