Answers for "python if string is null or whitespace"

0

python if string is null or whitespace

def IsNullOrEmpty(x): # Returns true if null or empty
    nullorempty = False
    
    if not(x): 		# checks for nulls
        nullorempty = True
    if x.isspace(): # checks for blank strings
        nullorempty = True    
        
    return nullorempty
Posted by: Guest on September-02-2021

Code answers related to "python if string is null or whitespace"

Python Answers by Framework

Browse Popular Code Answers by Language