Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ https://www.formula1.com/en/teams

html_code = response.text
soup = BeautifulSoup(html_code, "html.parser")
print(len(soup.select(".outline")))
print(len(soup.select(".group")))
```

</details>
Expand All @@ -154,7 +154,7 @@ Use the same URL as in the previous exercise, but this time print a total count

html_code = response.text
soup = BeautifulSoup(html_code, "html.parser")
print(len(soup.select(".f1-grid")))
print(len(soup.select(".f1-team-driver-name")))
```

</details>
Loading