re.sub()函数

2018-07-18  本文已影响0人  认真点啊

在使用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')))
上一篇下一篇

猜你喜欢

热点阅读