30 <li class="start_1">
31 <input type="checkbox" name="word_ids[]" value="34" class="list_check">
32 </li>
This is a part of html file that I want to parse. But when I applied
uh = open('1.htm','r')
data = uh.read()
print data
tree = ET.fromstring(data)
It showed
xml.etree.ElementTree.ParseError: mismatched tag: line 32, column 18
I don't know what is going wrong?