Shorter alternative for 'lambda' keyword?
问题 Background: Python is about simple and readable code. It got better over the versions and I am a huge fan! However, typing l a m b d a everytime I have to define a lambda is not fun (you may disagree). The problem is, these 6 characters l a m b d a makes my statement longer when I nest a couple of lambdas inside map s and filter s (I am not nesting more than 2 or three, because it takes away the readability of python - no arguments here!) The actual question (in comments): # How to rename