Question: python Write a user-defined function called commonLst (Ist1, Ist2) that takes 2 arguments, both lists. Print a list of all items in Ist1 that are
Write a user-defined function called commonLst (Ist1, Ist2) that takes 2 arguments, both lists. Print a list of all items in Ist1 that are also in Ist2. Note: you may not use nested for loops. commonLst ([3,'Peter', 'Paul', 'Mary'], ['Jack', 'Mary', 'Paul']) ['Paul', 'Mary']
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
