There is a list:
x = [5, "ce", 0, (32, "a")] It doesn't contain a None, or empty array, or False element, so it should return True.
0 shouldn't be counted as an empty object.
y = [5, "ce", 0,, "", (32, "a")] It contains an empty string so it should return False.
How would you do it in the fastest way?