Course Content
Web Scraping with Python
Web Scraping with Python
3. Working with Element Attributes in Beautiful Soup
Working with Paragraph Elements
Task
Swipe to begin your solution
You will work with the same page. In this task, you need to save all the <p>
elements in a variable, and then display all the occurrences and number of the element in a html structure. Follow the next steps:
- Assign all the occurrences of
<p>
elements to thep
variable. - Output number of elements within the
p
variable (p
is a list).
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 6
Working with Paragraph Elements
Task
Swipe to begin your solution
You will work with the same page. In this task, you need to save all the <p>
elements in a variable, and then display all the occurrences and number of the element in a html structure. Follow the next steps:
- Assign all the occurrences of
<p>
elements to thep
variable. - Output number of elements within the
p
variable (p
is a list).
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 6
Switch to desktop for real-world practiceContinue from where you are using one of the options below