8000 Rename challenge filenames · rakash/python-basics-exercises@a08e889 · GitHub
[go: up one dir, main page]

Skip to content

Commit a08e889

Browse files
committed
Rename challenge filenames
1 parent e5fb321 commit a08e889

25 files changed

+4
-2
lines changed

ch09-lists-and-dictionaries/capitals.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# 10.6 - Challenge: Capital City Loop
2-
# This is the capitals.py module to be used in the solution to the challenge.
2+
3+
# This is the capitals.py module to be used in the solution to the
4+
# Capital City Loop challenge.
35

46

57
capitals_dict = {

ch15-interacting-with-the-web/2-use-an-html-parser-to-scrape-websites.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
# Display the text in the HTML page of each link
2727
link_page = urlopen(link_address)
2828
link_text = link_page.read().decode("utf-8")
29-
link_soup = BeautifulSoup(link_text, s"html.parser")
29+
link_soup = BeautifulSoup(link_text, "html.parser")
3030
print(link_soup.get_text())

0 commit comments

Comments
 (0)
0