str1 = 'Thank you very much. It was really great help for me'
str2 = 'Yes, I am'
str3 = 'No, It wasn`t'
arr = ['it', 'no', 'jack']
if str1 in arr => true
if str2 in arr => false
if str3 in arr => true
i don't care upper or lower.
i want to check that i saved array and check string value if there is a word.
how can i check it?
i tried
print(arr in str)
but error occored 'in ' requires string as left operand, not list
somebody help me