Introduzione
any() è una funzione incorporata in Python. Restituirà True se qualsiasi elemento dell'iterable è true. Ciò che è importante notare è anche che se c'è un iterabile vuoto, restituirà False.
Questo è diverso dalla funzione tutto integrato dove se c'è un iterabile vuoto, restituirà True.
Il seguente articolo è una guida dettagliata su come utilizzare la funzione any() in Python durante la sezione seguente.
Esempio
list = [] x = any(list) print(x)
Uscita:
Falso
list = [1, 3, 4] x = any(list) print(x)
Uscita:
Vero
Definizione
Se il valore di iterable è true, la funzione restituisce True, altrimenti restituisce False.
Restituirà False Se l'iterable è vuoto,
La sintassi
any(iterable)
Valori dei parametri :
iterabile:elenco, tupla, dizionario
Altri esempi
Esempio 1 :La funzione any() con elenco
x = [1, 3, 5] print(any(x)) # 0 and False are two false values y = [0, False] print(any(y)) z = [0, False, 5] print(any(z)) k = [] print(any(k))
Uscita:
Vero
Falso
Vero
Falso
Esempio 2 :La funzione any() con stringa
s = "" print(any(s)) s= "abcd" print(any(s))
Uscita:
Falso
Vero
Esempio 3 :la funzione any() con un dizionario
dict = {0 : "cat", 1 : "dog"} l = any(dict) print(l) # the any() function checks the keys, not the values with dictionaries.
Uscita:
Vero
Conclusione
In questo articolo, ti abbiamo guidato su come utilizzare la funzione any() in Python.
Grazie per aver letto!