Как использовать функцию Python All () для проверки списка пуст или нет
emptyList = [1]
length = len(emptyList)
if length == 0 and all(emptyList):
print("This list is empty now.")
else:
print("This list is not empty.\n\nThe values of list:")
for x in emptyList:
print(x)
Excited Earthworm