Answers for "value exist in array pythone"

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

Python Answers by Framework

Browse Popular Code Answers by Language