Python Forum
data from multiple Entry widgets
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
data from multiple Entry widgets
#10
The array is not the problem. If you did this
xxx[a,b,c] = Entry(root....)
xxx[a,b,c].grid(...
You would have a list of entry widgets that you could later use like this:
values[a,b,c] = xxx[a,b,c].get()
The problem you were having had to do with not knowing that .grid returns None and not saving the values returned by get(). You would have the same problem if you used independent variables.
Reply


Messages In This Thread
data from multiple Entry widgets - by beevee - Aug-15-2020, 07:27 PM
RE: data from multiple Entry widgets - by bowlofred - Aug-15-2020, 07:51 PM
RE: data from multiple Entry widgets - by beevee - Aug-15-2020, 08:41 PM
RE: data from multiple Entry widgets - by bowlofred - Aug-15-2020, 10:02 PM
RE: data from multiple Entry widgets - by beevee - Aug-15-2020, 10:28 PM
RE: data from multiple Entry widgets - by beevee - Aug-15-2020, 08:59 PM
RE: data from multiple Entry widgets - by deanhystad - Aug-15-2020, 10:46 PM
RE: data from multiple Entry widgets - by bowlofred - Aug-15-2020, 10:47 PM
RE: data from multiple Entry widgets - by beevee - Aug-15-2020, 11:57 PM
RE: data from multiple Entry widgets - by bowlofred - Aug-16-2020, 01:30 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python Project Structure for Modularity and Reusability with Multiple Entry Points b19wh33l5 0 329 Apr-24-2024, 12:21 PM
Last Post: b19wh33l5
  Load multiple Jason data in one Data Frame vijays3 6 1,778 Aug-12-2022, 05:17 PM
Last Post: vijays3
  Python, how to manage multiple data in list or dictionary with calculations and FIFO Mikeardy 8 2,848 Dec-31-2021, 07:47 AM
Last Post: Mikeardy
  How to map two data frames based on multiple condition SriRajesh 0 1,603 Oct-27-2021, 02:43 PM
Last Post: SriRajesh
  Load the data from multiple source files to one table amy83 2 2,719 Apr-27-2021, 12:33 AM
Last Post: Pedroski55
  API Gateway to manage multiple API's get put data robsuttonjr 2 2,654 Mar-09-2021, 04:09 PM
Last Post: robsuttonjr
  Pandas: how to split one row of data to multiple rows and columns in Python GerardMoussendo 4 7,187 Feb-22-2021, 06:51 PM
Last Post: eddywinch82
  How to filter out Column data From Multiple rows data? firaki12345 10 5,429 Feb-06-2021, 04:54 AM
Last Post: buran
  Fetching data from multiple tables in a single request. swaroop 0 1,978 Jan-09-2021, 04:23 PM
Last Post: swaroop
  How to fill parameter with data from multiple columns CSV file greenpine 1 1,757 Dec-21-2020, 06:50 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020