37,744
社区成员




from BeautifulSoup import BeautifulSoup # For processing HTML
import os
import sys
fp = open('2.htm','r')
html = fp.read()
#htmp_utf = unicode(html, "gbk").encode("utf8")
soup = BeautifulSoup(html_utf)
print soup.prettify()