IB
Size: a a a
IB
IB
IB
a
IB
C
A
U
DD
U
a
list1 = ['Hi', 'hello', 'at', 'this', 'there', 'from']
list2 = ['there', 'hello', 'Hi']
for each in list2:
if each in list1:
print(f'{each} :yes')
else:
print(f'{each} :no')
U
list1 = ['Hi', 'hello', 'at', 'this', 'there', 'from']
list2 = ['there', 'hello', 'Hi']
for each in list2:
if each in list1:
print(f'{each} :yes')
else:
print(f'{each} :no')
OO
DD
DD