beautirulsoupを使って
<BR>
タグと
<STRONG>
タグだけを除きたいと思っています。
①のような文を書いてみたのですが、除去できませんでした。
②replaceするような文も考えたのですが、以下のようなエラーが出ます。
TypeError: 'NoneType' object is not callable
なにか良い方法はないでしょうか?
python
1 while(soup.br): 2 soup.br.unwrap() 4 while (soup.strong): 5 soup.strong.unwrap()
python
1 for i in table: 2 item.append(i.replace("<BR>",""))