简体   繁体   中英

creating a list of values from entry widget tkinter

I want to create a table in Python GUI , using entry widgets and obtain the values entered by the user for further calculation in a list.found the snippet below:

在此处输入图片说明

Is this the correct way?

Try this:

entries = []
varEntry = StringVar()
entry = Entry(frame, textvariable=varEntry)
entry.pack()
entry.bind('Return',addToList)

def addToList():
    entries.append(varEntry)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM