Python: using "if not" on multiple items

Viewed 5717

Can I do this in Python:

if not (list1, list2, list3):
    ...

To check if all given lists are empty?

If not how else would I do it?

5 Answers
Related