标签: python url tkinter hyperlink
我有一个tkinter脚本。我想知道无论如何当你按下按钮它会带你到一个网站
from tkinter import * app = Tk() app.geometry("250x400") app.title("Links") def Link(): ? button1 = Button(app, text = "To a web site.", command = Link) button1.pack() app.mainloop()
答案 0 :(得分:14)
有module for that。
import webbrowser webbrowser.open("http://xkcd.com/353/")