Q:

Write a Python program to find common items from two lists

0

Write a Python program to find common items from two lists

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

color1 = "Red", "Green", "Orange", "White"
color2 = "Black", "Green", "White", "Pink"
print(set(color1) & set(color2))

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now