Python supports manipulation of anonymous functions (i.e. lambda expressions). Lambda functions is a way to create functions without names. These functions are throwaway functions and are used where they are created. These anonymous functions are handy to use in a places where you can’t do function declaration. [Read more…]