Answers for "any string python"

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
14

any in python

The any() function takes an iterable (list, string, dictionary etc.) in Python.

The any() function returns the boolean value:

True if at least one element of an iterable is true
False if all elements are false or if an iterable is empty

Example:
some_list = [1, 2, 3]
print(any(some_list)) # True
another_list = []
print(any(another_list)) # False
Posted by: Guest on August-05-2020
0

python any in string

if any(word in 'some one long two phrase three' for word in list_):
Posted by: Guest on May-15-2021

Code answers related to "any string python"

Python Answers by Framework

Browse Popular Code Answers by Language