check if empty python code example
Example 1: check if string is empty python
my_str = ""
if not my_str:
print("empty")
else:
print("not empty")
#output: empty
Example 2: check if variable is empty python
if variable:
# code goes here...
Example 3: python check empty string
if not myString:
Example 4: check if empty item in list python
if '' in list:
# do stuff