You are viewing a single comment's thread. Return to all comments →
class MyHTMLParser(HTMLParser): def handle_comment(self, data): if '\n' in data: print(">>> Multi-line Comment") else: print(">>> Single-line Comment") print(data) def handle_data(self, data): if x := data.rstrip(): print(">>> Data") print(x)
Seems like cookies are disabled on this browser, please enable them to open this website
HTML Parser - Part 2
You are viewing a single comment's thread. Return to all comments →