Sometimes, I just want to execute a function for a list of entries -- eg.:
for x in wowList: installWow(x, \'installed by me\')
Sometime
I can not resist myself to post it as separate answer
reduce(lambda x,y: x(y, 'installed by me') , wowList, installWow)
only twist is installWow should return itself e.g.
def installWow(*args): print args return installWow