EXERCISE TOPIC▼
- Access exercises (91)
- C# exercises (79)
- Excel exercises (278)
- Power Apps exercises (13)
- Power Automate exercises (18)
- Power BI exercises (139)
- Power Platform exercises (157)
- Python exercises (28)
- Report Builder exercises (141)
- SQL exercises (198)
- SSAS exercises (51)
- SSIS exercises (46)
- SSRS exercises (99)
- VBA exercises (85)
- Visual Basic exercises (46)
PYTHON EXERCISES▼
PYTHON EXERCISES▼
Python | Scraping websites exercise | Write a program to list the external links from any website
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
Software ==> | Python (28 exercises) |
Version ==> | Latest version |
Topic ==> | Scraping websites (1 exercise) |
Level ==> | Average difficulty |
Subject ==> | Python training |
You need a minimum screen resolution of about 700 pixels width to see our exercises. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
Import the following modules into a new program:
import requests
from bs4 import BeautifulSoup
Write a program which gets the HTML from any website address you specify, and returns a list of external links. For example, here's what the program might return if you use the Google home page as a URL:

Some of the links from the Google home page.
The links returned from this will depend on your location and equipment and the current date and time, and so will be different on every computer.
Try the program out with a few websites to check it works, then close it down.