I can not loop over each list item like:

                   for eachMenuData in self.menuData():

because when I read external txt file:

                   f=open(listFile,'r')
                   lines=f.readlines()
                   f.close()

I get the list of file lines instead of list of external list (tuple)
elements.

Thats right you will need to parse the data to convert it into the format you want.
This is one reason you might find it easier to use XML for storing the data
and use a tool like ElementCTree to parse it.

Alternatively you could make your data file a Python module and import it

import menudata

for eachMenuData in menudata.menuData:

Or another option is to store the data as a tuple in a pickle or shelve file.
But they you need to create it from Python initially.

My personal favourite for this kind of application is the module approach.
Just edit the menu module when you want to modify the menu structure
and the import will see it as Python data.

HTH,

--
Alan Gauld
Author of the Learn to Program web site
http://www.alan-g.me.uk/

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to