Question: Describe your program here. 1 . Write a Python function called get _ common _ elements ( a _ list, b _ list ) that

Describe your program here.
1. Write a Python function called get_common_elements(a_list, b_list) that takes two lists as input and returns a
list containing common elements to both lists without duplicates. Display the outcome of the function.
See example below 10 pts).
Example
print(get_common_element([1,6,3,4],[8,6,3,3]))
output
[6,3]
print(get_common_element(['car',88, 'chair', 26,23,44],[88, 'car' 6,3,16]))
output
['car',88]
"""
# Write your solution for problem 1 here.

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!