Question: PYTHON CODE 1. Use list inclusion to build a new list that contains a list for each name with the name spelled backwards and the

PYTHON CODE 1. Use list inclusion to build a new list that contains a list for each name with the name spelled backwards and the length of the name. Example: For the list [Adam","Bob"]: The output should be: [[ madA, 4], ["boB", 3]] 2. Do the same as in 1. but use map() method
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
