Python Data Wrangling
Python Data Wrangling
When you scrape data and it is not the exact data you wanted them you use data wrangling.
● Here, HTML is for learning proper website language so we can easily do web scraping.
● Regular expressions is a set of tools that are commonly used to work with text data.
They allow for the certain intelligent target searches for different types of text.
● Write a script in python to access a website.
● Sometimes these scraping scripts will encounter errors so exception handling will help
our script to react to these errors properly and recover after these errors happen.
Regular expressions.
This below is done using the re module in python.