美文网首页
python正则,出现TypeError: expected s

python正则,出现TypeError: expected s

作者: 丙吉 | 来源:发表于2020-03-26 14:38 被阅读0次

    今天用正则的时候出现了:

    TypeError: expected string or bytes-like object 的问题。

    数据如下:

    {'Airtel','Identified As Spam','Protected by Truecaller','SPAM','Spam Call'}

    用下面这个命令报错:

    pattern = re.compile('Spam')

    pattern.findall(data.iloc[106]['contact_name_set'])

    修改:

    ​正则里面的 变成str型即可。

    相关文章

      网友评论

          本文标题:python正则,出现TypeError: expected s

          本文链接:https://www.haomeiwen.com/subject/yykcuhtx.html