Ok so basically what I'm reading data from a file and with that data I want to create an object for each line.
So something like:
bar = [['a','b'],['c','d']]
for foo in bar:
foo = Class_name(list_of_arguments)
What would be the best technique to 'unpack' the list? Would this best be done in the initializer method of the class or would it be better to do this before the creating the object and pass the arguments in a non-list format? I ask because the lists contains information relating to the object which will be used by the class.
Also I would like each object to have a unique name, What should I do for that? Would it best be use to one of the values in the list?
fooin the for loop? What islist_of_argumentswhat are these supposed to mean? – S.Lott May 26 '11 at 17:56list_of_argumentsin your code? Also, are you really trying to assign to foo, which is the iteration variable? – jwd May 26 '11 at 17:56