Answers for "how to check empty value in python"

3

check if variable is empty python

if variable:
  # code goes here...
Posted by: Guest on May-14-2020
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
Posted by: Guest on September-01-2020
0

check if value is empty python

a_variable = {}

is_a_empty = bool(a_variable)

print(is_a_empty)
# >>> False


b_variable = [1, 2, 3]

is_b_empty = bool(b_variable)

print(is_b_empty)
# >>> True
Posted by: Guest on June-09-2021

Code answers related to "how to check empty value in python"

Python Answers by Framework

Browse Popular Code Answers by Language