Answers for "how to deal with empty string in python"

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

Code answers related to "how to deal with empty string in python"

Python Answers by Framework

Browse Popular Code Answers by Language