Answers for "checking a value exist in a 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

Code answers related to "checking a value exist in a array in python"

Python Answers by Framework

Browse Popular Code Answers by Language