标签:strip() amp html logs bsp str 记录 去除 去除空格
如下面的
1 <td> 柳暗花溟</td>
html里面的空格 ,想直接用strip()函数去除是不可能的,必须显式的去掉\xa0
例如以上的就可以这样的方式去除空格
1 author = author.strip("\n\r \xa0")
记录一下。
标签:strip() amp html logs bsp str 记录 去除 去除空格
原文地址:http://www.cnblogs.com/qggg/p/6719495.html