re.sub()函数

在使用re.sub()函数进行过滤时,注意第三个参数值是字符类型,不能是byte类型,否则会出现以下错误:

TypeError: expected string or bytes-like object

可使用str()进行转换

 'name': re.sub('[\t\n\r]','',str(item.find('.p-name').text())),
 'shop': re.sub('[\t\n\r]','',str(item.find('.p-shop .curr-shop').attr('title')))

你可能感兴趣的:(re.sub()函数)