Hello!
I have a class project and attempting to use a listbox to read a string of tab data from a simple text file. When the string of data is printed to the python shell the rows of string data appears to be spaced. However, when the string of data is sent to the listbox the line of data is one long string with no spaces. Here is a snippet of my script. I am also using Python 2.6.5 to help reuse some of my old class projects. I attempted to upgrade Python, but, the syntax may have changed and breaks my old programs.
# Open and read the text file containing the reservation information
info = open(reservationName + '.txt', 'r')
i = 0
for line in info:
print line # Print to python shell
self.listbox.insert(END, line) # Load each line to list box
i = i+1 # Increment the counter
info.close()
Thank you for your help!