Computer Science, asked by Sabithasri39, 5 months ago

Find the identity operator from the following:
Is and in​

Answers

Answered by apranshusinha
0

Answer:

#Python program to illustrate

#Finding common member in the list

#using 'in' operator

list1=[1,2,3,4,5]

list2=[6,7,8,9]

for an item in the list1:

if an item in the list2:

print("overlapping")  

else:

print("not overlapping")

Hope u like my answer pls mark me brilliant

Similar questions