Record your races with a typeracer account:
Create Your Account- Save your race history and scores.
- Customize your profile and racecar.
- It’s free, why not?
Race Result Details |
Racer | mathew (foxxworx) |
Race Number | 2 |
Date | Fri, 9 Jun 2023 00:14:23 +0000 |
Universe | code |
Speed |
29 WPM
![]() |
Accuracy | 93.6% |
Rank | 2nd place (out of 2) |
Opponents | shalomski (1st place) |
Text typed:
|
class URLLister(SGMLParser): def reset(self): SGMLParser.reset(self) self.urls = [] def start_a(self, attrs): href = [v for k, v in attrs if k=='href'] if href: self.urls.extend(href)
— Dive Into Python
|