Answers for "check if array python"

2

python check array exists

array = [1,2,3,4]
exists_2 = 2 in array
print(exists_2) # True
exists_5 = 5 in array
print(exists_5) # False
Posted by: Guest on January-29-2021

Code answers related to "check if array python"

Python Answers by Framework

Browse Popular Code Answers by Language