from selenium import webdriver
import time
url = 'https://protonmail.com'
driver = webdriver.Chrome('/C:\Users\Usr1\Downloads\chromedriver_win32')
driver.get(url)
This program is supposed to open a chrome tab with ProtonMail in it when ran. Instead I receive the error:
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes
in position 3-4: truncated \UXXXXXXXX escape
I looked up the error and found no solution. As I am new to python could I get some help?