当前位置: 代码迷 >> HTML/CSS >> python除开html转移字符
  详细解决方案

python除开html转移字符

热度:264   发布时间:2012-09-14 23:00:49.0
python去除html转移字符
import HTMLParser
parser = HTMLParser.HTMLParser()
parser.unescape("<a href='#'>click</a>")
  相关解决方案