from html.parser import HTMLParser class PCounter(HTMLParser): def __init__(self): super().__init__() self.count = 0 def handle_starttag(self, tag, ...
確定! 回上一頁