解析充分的html的美丽的汤

时间:2014-10-10 23:00:25

标签: python beautifulsoup

我有以下type

<class 'BeautifulSoup.Tag'>

我如何打印此标签中包含的所有html?我希望输出为字符串:

<div class="txt-block">
<h4 class="inline">Country:</h4>
<a href="/country/us?ref_=tt_dt_dt" itemprop="url">USA</a>
</div> 

.text给了我:

Country:USA

1 个答案:

答案 0 :(得分:0)

在上述情况下强制使用unicode:

item = unicode(item)