python 判断 ‘NoneType’的方法

的错误时说明需要进行判断,而对 ‘NoneType’ 进行判断时直接使用‘is None’即可,如下:

if text is None:
print('test is ’ + None)
else:
print('test is not ’ + None)

a = re.match(r’主叫号码(.*)客户姓名’, r’2、主叫号码:15558191990;3、客户姓名:韩东远;')
print(type(a))
if a is None:
print(‘pfofiggf’)

你可能感兴趣的:(文本转换,python)