📌  相关文章
📜  python 如果字符串为空或空格 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:03.956000             🧑  作者: Mango

代码示例1
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