Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python not in

arr = ['a','b','c','d','e','f']

if 'g' not in arr:
    print('g is not in the list')
 
PREVIOUS NEXT
Tagged: #python
ADD COMMENT
Topic
Name
6+5 =