Ejemplo 1: comprobar que el diccionario está vacío o no en Python
test_dict = {}
if not test_dict:
print "Dict is Empty"
if not bool(test_dict):
print "Dict is Empty"
if len(test_dict) == 0:
print "Dict is Empty"
Ejemplo 2: para verificar si un diccionario está vacío o no en Python
my_dict = {}
if not bool(my_dict):
print("Dictionary is empty")
Ejemplo 3: Python comprueba si el diccionario está vacío
# Using the not operator, Check if dictionary is empty
test_dict = {}
res = not test_dict
print("Is dictionary empty ? : " + str(res))
# Output :
# Is dictionary empty ? : True
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)