Question: Please solve it by Python Write a function mutual_friends(list1,list2) that takes two lists of friends and returns the number of friends in common. Use sets.

Please solve it by Python

Write a function mutual_friends(list1,list2) that takes two lists of friends and returns the number of friends in common. Use sets. Your problem should behave as follows:

>>> mutual_friends(["Bob","Joe"],["Esmerelda"])
0
>>> mutual_friends(["Bob","Joe"],["Bob","Joe"])
2
>>> mutual_friends(["Bob","Joe"],["Bob","Joe","Keitha"])
2

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!