阅读量:0
在Python中,我们可以使用if
语句来判断字符串是否为空或者None
。
判断字符串为空可以使用以下方法:
string = "" if not string: print("字符串为空")
判断字符串为None
可以使用以下方法:
string = None if string is None: print("字符串为None")
这两种方法可以结合使用,判断字符串为空或者为None
:
string = "" if string is None or not string: print("字符串为空或为None")
请注意,这里判断字符串是否为空使用了not
关键字,它会将空字符串、0、空列表、空字典等视为False
。所以,只有当字符串为None
时,才会被判断为空。