How do we check if a list is empty?

if len(listname) == 0:if listname == 0:if listname[0] == False:if listname.length == 0:

Great! We simply check if its length is 0. Alternatively, we could compare it to an empty list.

Not quite! We simply check if its length is 0. Alternatively, we could compare it to an empty list.