list1= [1,2,3,4,5]
string1= "My name is AskPython"
tuple1=(11,22,33,44)
 
print(5 not in list1) 
print("is" not in string1) 
print(88 not in tuple1) 

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: