Answers for "python any element in list in another list"

1

python all elements in list in another list

set(['a', 'b']).issubset(['a', 'b', 'c'])
Posted by: Guest on June-24-2020
0

find element from one list in another python

myList = ['computer', 'programming', 'hello', 'world']
query = ['hello', 'world']

# iterate through the smallest list so it takes less time
for eachQ in query:
	if eachQ in myList:
      print("True, query found at index " + str(myList.index(eachQ)))
    else:
      print("False")
Posted by: Guest on April-18-2022

Code answers related to "python any element in list in another list"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language