Check If a List is Empty in Python

  • Post category:List

Checking if a list is empty in Python can be done by evaluating its length. Here are two examples:

Example 1:

my_list = []
if len(my_list) == 0:
    print("The list is empty.")
else:
    print("The list is not empty.")

Output:

The list is empty.

Example 2:

my_list = [1, 2, 3]
if not my_list:
    print("The list is empty.")
else:
    print("The list is not empty.")

Output:

The list is not empty.