I\'m trying to understand how the any() and all() Python built-in functions work.
any()
all()
I\'m trying to compare the tuples so that if any value i
s = "eFdss" s = list(s) all(i.islower() for i in s ) # FALSE any(i.islower() for i in s ) # TRUE