Given any number of parameters (which is signified using *args syntax), return True if none of the variables are falsy/empty.
nothing_is_nothing(0, False, [], {}) ➞ False
nothing_is_nothing(33, "Hello", (True, True, 3)) ➞ True
nothing_is_nothing(True, None) ➞ False
*args allows a function to take any number of parameters.False in a boolean context. This includes (but is not limited to) variables such as 0, False, None, empty sets, lists and tuples.