Answers for "how to check whether a value is present in an array in python"

5

python check string not exist in array

arr_test = ["thetung1","thetung2","thetung3"]
title = "thetung"
if title not in arr_test:
	arr_test.append(title)
Posted by: Guest on November-01-2020
0

check if value is in list python

if item in list:
  #do stuff
Posted by: Guest on June-24-2021

Code answers related to "how to check whether a value is present in an array in python"

Python Answers by Framework

Browse Popular Code Answers by Language