<p id="firstpara" align="center">This is paragraph <b>one</b>.</p>
<p id="firstpara" align="center">This is paragraph <b>one</b>.</p>
from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup(“<b id=”2“>Argh!</b>”)
print soup
# <b id=“2”>Argh!</b>
b = soup.b
b = 10
print soup
# <b id=“10”>Argh!</b>