将值从tkinter GUi插入数据库时​​出错

时间:2019-03-30 22:07:55

标签: python-3.x tkinter sqlite tkinter-entry

将值从tkinter GUi插入sqlite3数据库时出错。 接受用户的输入

1 个答案:

答案 0 :(得分:0)

按照问题的语气,似乎您在访问文本框内的内容时遇到了麻烦。

答案是.get()方法。基本上,这使您可以访问文本框中的内容。

这是一个简单的代码:

from tkinter import *
window = Tk()
window.title("Example")
window.geometry("500x500")
window.configure(bg = "sky blue")
e = Entry(window, bg = "blue", fg = "orange")
e.pack()
def com1():
    acess = e.get()
    print(acess)
button1 = Button(window, text = "enter", command = com1)
button1.pack()

e.get()是将Entry小部件中的内容放入其中的东西。

将其保存在变量中,然后将其用于任何所需的变量。

希望这会有所帮助!