is empty in python code example
Example 1: check if list is empty python
if len(li) == 0:
print('the list is empty')
Example 2: check if variable is empty python
if variable:
# code goes here...
Example 3: how to check empty string in python
my_empty_string = '' # given the empty string a variable
def check_empty():
if not my_empty_string:
print("Empty")
else:
print("Not Empty")
check_empty()
# by George Kwabena