I've got a piece of code which contains a for loop to draw things from an xml file;
for evoNode in node.getElementsByTagName('evolution'):
evoName = getText(evoNode.getElementsByTagName("type")[0].childNodes)
evoId = getText(evoNode.getElementsByTagName("typeid")[0].childNodes)
evoLevel = getText(evoNode.getElementsByTagName("level")[0].childNodes)
evoCost = getText(evoNode.getElementsByTagName("costperlevel")[0].childNodes)
evolutions.append("%s x %s" % (evoLevel, evoName))
currently it outputs into a list called evolutions as it says in the last line of that code, for this and several other for functions with very similar functionality I need it to output into a class instead.
class evolutions:
def __init__(self, evoName, evoId, evoLevel, evoCost)
self.evoName = evoName
self.evoId = evoId
self.evoLevel = evoLevel
self.evoCost = evoCost
Can someone show me how to create a series of instances of this class, each of which is a response from that for function (or come up with a ore practical solution, this one doesn't really need the class but one of the others really does)? thanks.

get = lambda name: getText(evoNode.getElementsByTagName(name)[0].childNodes)– J.F. Sebastian Aug 30 at 12:10