For example, if passed the following:
a = []
How do I check to see if a is empty?
Advertisement
Answer
if not a:
print("List is empty")
Using the implicit booleanness of the empty list is quite Pythonic.
For example, if passed the following:
a = []
How do I check to see if a is empty?
if not a:
print("List is empty")
Using the implicit booleanness of the empty list is quite Pythonic.