Home › Coding › Below is an instruction that describes a task. Write a respo...
Below is an instruction that describes a task. Write a respo...
Coding · General · Coding
63Quality
88%Useful
85Reliability
The prompt
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Generate a Python program that takes two lists as input and returns a new list containing only the common elements. ### Input: [1, 2, 3, 4, 8], [2, 6, 8, 10] ### Output: def common_elements(list1, list2): common_list=[] for element in list1: if element in list2: common_list.append(element) return common_list list1 = [1, 2, 3, 4, 8] list2 = [2, 6, 8, 10] common_list = common_elements(list1, list2) print(common_list)