python,去掉“xa0”和“\r\n”

2021-03-06 17:30

阅读:558

标签:div   rip   pre   mamicode   rgb   输出内容   strip()   ima   字符   

爬小说网站,输出内容有时候会出现下图字符

技术图片

 

 首先,去掉“xa0”

s = T-shirt\xa0\xa0短袖圆领衫,体恤衫\xa0
out = "".join(s.split())
print(out)

技术图片

 

 然后,去掉“\r\n”

s = T-shirt,\r\n
s = s.strip()
print(s)

技术图片

 

python,去掉“xa0”和“\r\n”

标签:div   rip   pre   mamicode   rgb   输出内容   strip()   ima   字符   

原文地址:https://www.cnblogs.com/becks/p/14289014.html

上一篇:c/c++中的i++和++i的区别

下一篇:Java泛型


评论


亲,登录后才可以留言!