Answers for "check a value in array 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

is in array python

>>> 1 in [0, 1, 2, 3, 4, 5]
True
Posted by: Guest on September-08-2021

Code answers related to "check a value in array python"

Python Answers by Framework

Browse Popular Code Answers by Language