1
菜鳥問題在這裏,但我正在用一個GUI做一個非常基本的程序。它採用法語單詞,並將它們轉換爲英語(在某種程度上)如何分解成列表?
from tkinter import *
import webbrowser
def show_entry_fields():
website = "www.wordreference.com/fren/%s" % (e1.get())
webbrowser.open(website)
master = Tk()
Label(master, text="French Word").grid(row=0)
e1 = Entry(master)
e1.grid(row=0, column=1)
Button(master, text='Quit', command=master.quit).grid(row=3, column=0, sticky=W, pady=4)
Button(master, text='Show', command=show_entry_fields).grid(row=3, column=1, sticky=W, pady=4)
mainloop()
問題是,如果我在多個字輸入,它開闢了
www.wordreference.com/fren/Bonjour%20Avoir
我已經試過
e1 = [Entry(master)]
但是,這給我錯誤,因爲
e1 = Entry[(master)]