在Python中以编程方式在Web浏览器中打开URL

时间:2011-11-05 23:27:27

标签: 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()

1 个答案:

答案 0 :(得分:14)

module for that

import webbrowser

webbrowser.open("http://xkcd.com/353/")