We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3199b3d commit 1c48ef6Copy full SHA for 1c48ef6
README.md
@@ -1326,9 +1326,9 @@ def scrape(url):
1326
>>> document = scrape('https://en.wikipedia.org/wiki/Python_(programming_language)')
1327
>>> table = document.find('table', class_='infobox vevent')
1328
>>> rows = table.find_all('tr')
1329
->>> rows[11].find('a')['href']
+>>> website = rows[11].find('a')['href']
1330
'https://www.python.org/'
1331
->>> rows[6].find('div').text.split()[0]
+>>> latest_v = rows[6].find('div').text.split()[0]
1332
'3.7.2'
1333
```
1334
0 commit comments