Introduction
Lambda with map() helps you quickly change all items in a list without writing a full function. It makes your code shorter and easier to read.
You want to add 1 to every number in a list.
You need to turn all words in a list to uppercase.
You want to get the length of each string in a list.
You want to square each number in a list.
You want to convert a list of temperatures from Celsius to Fahrenheit.