You are viewing a single comment's thread. Return to all comments →
I need to follow number of different spaces when printing the output. ~~~
from html.parser import HTMLParser
class MyHTMLParser(HTMLParser): def handle_starttag(self, tag, attrs): print("Start :", tag) for attr in attrs: print("->", attr[0], ">", attr[1])
def handle_endtag(self, tag): print("End :", tag) def handle_startendtag(self, tag, attrs): print("Empty :", tag) for attr in attrs: print("->", attr[0], ">", attr[1])
parser = MyHTMLParser() n = int(input()) for _ in range(n): s = input()
parser.feed(s)
~~~
Seems like cookies are disabled on this browser, please enable them to open this website
HTML Parser - Part 1
You are viewing a single comment's thread. Return to all comments →
I need to follow number of different spaces when printing the output. ~~~
from html.parser import HTMLParser
class MyHTMLParser(HTMLParser): def handle_starttag(self, tag, attrs): print("Start :", tag) for attr in attrs: print("->", attr[0], ">", attr[1])
parser = MyHTMLParser() n = int(input()) for _ in range(n): s = input()
~~~