I was wondering whether for most examples it is more \'pythonic\' to use lambda or the partial function?
For example, I might want to apply imap on some list, like add 3
In the given example, lambda seems most appropriate. It's also easier on the eyes.
I have never seen the use of partial functions in the wild.