webbrowser.open("https://music.youtube.com", new=0, autoraise=True)
this is the code so far;
from webbrowser import *
from tkinter import *
from tkinter import ttk
root = Tk()
frm = ttk.Frame(root, padding=10)
frm.grid()
ttk.Label(frm, text="Hello World!").grid(column=0, row=0)
ttk.Button(frm, text="Google", command=root.destroy).grid(column=1, row=0)
ttk.Button(frm, text="Quit", command=root.destroy).grid(column=1, row=2)
root.mainloop()
but i'm trying to get it to open the URL if i click the Tkinter Box