“Sprawdź, czy wartość istnieje na liście Python” Kod odpowiedzi

Python Jak sprawdzić na liście

# app.py

listA = ['Stranger Things', 'S Education', 'Game of Thrones']

if 'Dark' in listA:
    print("Yes, 'S Eductation' found in List : ", listA)
else:
    print("Nope, 'Dark' not found in the list")
Joyous Jellyfish

Sprawdź, czy wartość istnieje na liście Python

def search(lst, x):
    if not x in lst:
        return False
    return True


if __name__ == "__main__":
    lst = [1, 2, 3, 4, 5]
    print(search(lst, 2))
    print(search(lst, 6))
Clean Caterpillar

Python Znajdź, czy część listy znajduje się na liście

'''    
    check if list1 contains all elements in list2
'''
result =  all(elem in list1  for elem in list2)
if result:
    print("Yes, list1 contains all elements in list2")    
else :
    print("No, list1 does not contains all elements in list2"
Fair Finch

Odpowiedzi podobne do “Sprawdź, czy wartość istnieje na liście Python”

Pytania podobne do “Sprawdź, czy wartość istnieje na liście Python”

Więcej pokrewnych odpowiedzi na “Sprawdź, czy wartość istnieje na liście Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu