Hello,

I'm reading "Text processing in Python" by David Mertz. In there he
defines a function

apply_each  = lambda fns, args=[]: map(apply, fns, [args]*len(fns))

I thought that this would be equivalent to:

apply_each = lambda fns, args=[]: [f(args) for f in fns]

Can anybody confirm this? If not, how are they different?
Thanks,
Wietse

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to