Python Forum
Need help to display data from a file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need help to display data from a file
#2
What does "stuck" mean?

Quote:I would like then the data to be displayed in a treeview, each item of the list in its own column, and that's where I'm stuck.

CRUMember is created in the function AddRecord. This means it is local to the function, and is garbage collected when the function exits, unless it is returned. You can use partial to pass an existing (not created in a function) list to the AddRecord function, and since lists are mutable, the changes made will exist outside the function. When you have time, read the Python Style Guide; functions are lower case with underlines, add_record, It makes code posted easier to understand. https://www.python.org/dev/peps/pep-0008/
Reply


Messages In This Thread
Need help to display data from a file - by Dzib - Sep-25-2019, 06:50 PM
RE: Need help to display data from a file - by woooee - Sep-25-2019, 09:30 PM
RE: Need help to display data from a file - by Dzib - Sep-26-2019, 04:12 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to display <IPython.core.display.HTML object>? pythopen 3 46,110 May-06-2023, 08:14 AM
Last Post: pramod08728
  Store variable data and display sum after 60 seconds the_dude 11 3,522 Dec-16-2021, 07:07 PM
Last Post: deanhystad
  xml file creation from an XML file template and data from an excel file naji_python 1 2,138 Dec-21-2020, 03:24 PM
Last Post: Gribouillis
Information Unable to display joystick's value from Python onto display box MelfoyGray 2 2,269 Nov-11-2020, 02:23 AM
Last Post: MelfoyGray
  How to save CSV file data into the Azure Data Lake Storage Gen2 table? Mangesh121 0 2,136 Jun-26-2020, 11:59 AM
Last Post: Mangesh121
  How to display a pdf file arbiel 3 2,480 Apr-05-2020, 07:03 PM
Last Post: arbiel
  Selection and display of data by combobox LagratteCchouette 10 7,645 Mar-02-2020, 06:34 PM
Last Post: ibreeden
  def Display Data Invalid Syntax error Linuxdesire 1 1,899 Oct-11-2019, 05:10 AM
Last Post: stranac
  export file and display cmd prompt same time jacklee26 1 2,063 Jul-24-2019, 05:15 AM
Last Post: Larz60+
  Display 20 records at a time,data structure or loop pythonds 1 2,499 Mar-29-2018, 11:09 AM
Last Post: DeaD_EyE

Forum Jump:

User Panel Messages

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