“La liste Python inclut” Réponses codées

La liste Python contient la liste

>>> items = set([-1, 0, 1, 2])
>>> set([1, 2]).issubset(items)
True
>>> set([1, 3]).issubset(items)
False
DreamCoder

La liste Python inclut

# List of string 
listOfStrings = ['Hi' , 'hello', 'at', 'this', 'there', 'from']

'''    
    check if element exist in list using 'in'
'''
if 'at' in listOfStrings :
    print("Yes, 'at' found in List : " , listOfStrings)
    
'''    
    check if element NOT exist in list using 'in'
'''
if 'time' not in listOfStrings :
    print("Yes, 'time' NOT found in List : " , listOfStrings)
Ever Dev

La liste Python contient la liste

#There's an all() and any() function to do this. To check if big contains ALL elements in small

result = all(elem in big for elem in small)
#To check if small contains ANY elements in big

result = any(elem in big for elem in small)
#the variable result would be boolean (TRUE/FALSE).
DreamCoder

Réponses similaires à “La liste Python inclut”

Questions similaires à “La liste Python inclut”

Plus de réponses similaires à “La liste Python inclut” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code