How do I check if a list is empty?

if not a:
  print("List is empty")

Using the implicit booleanness of the empty list is quite pythonic.

Leave a Comment