Answers for "how to find whether an exact substring in a list of strings "python""

2

python list contains substring

str_list = ["one", "two", "three"]
substr = "wo"
if any(substr in str for str in str_list):
	print('Yes!')
Posted by: Guest on September-01-2021
0

python check if string or list

isinstance(some_object, str)
Posted by: Guest on August-22-2021

Code answers related to "how to find whether an exact substring in a list of strings "python""

Python Answers by Framework

Browse Popular Code Answers by Language