Answers for "Check if only one type of string exist in list"

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
8

check if anything in a list is in a string python

y = any(x in String for x in List)
Posted by: Guest on April-10-2020

Code answers related to "Check if only one type of string exist in list"

Python Answers by Framework

Browse Popular Code Answers by Language