Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

is not in python

li = [1,2,'a','b']
if 'hello' not in li:
    print('hello is not in the list')
 
PREVIOUS NEXT
Tagged: #python
ADD COMMENT
Topic
Name
5+3 =