1
我編碼的程序,即,如果你把一個文本的文本框搜索它在Google.com上的內容,但它返回一個錯誤:不能連接「STR」和「實例」對象
TypeError: cannot concatenate 'str' and 'instance' objects
這是代碼:
InputStrings = StringVar()
Entry(root, textvariable = InputStrings).pack()
def OutputText():
OutStrings = InputStrings.get()
b = "https://www.google.it/search?q="
if InputStrings:
b = b + InputStrings
webbrowser.open(b)
root.withdraw()
root.quit()
謝謝!!!,我在這工作了三天,現在工作,謝謝:D – 2014-08-29 08:26:45