Conteúdo do Curso
Automating Data Collection from Web Sources
Store Scraped Data Into a Pandas DataFrame
Storing scraped data in a pandas
DataFrame is a convenient way to manipulate and work with the data. pandas
is a powerful library in Python that provides easy-to-use data structures and data analysis tools.
A DataFrame is a 2-dimensional labeled data structure with columns of potentially different types. You can think of it as a spreadsheet, SQL table, or a dictionary of Series objects. It is generally the most commonly used pandas
object.
Tarefa
Swipe to begin your solution
- Import
pandas
and initialize an empty DF; - Scrape the country name (find all instances on the web page);
- Scrape the capital city (find all instances on the web page);
- Append the scraped values (
country_name
,item
) in thedf
.
Solução
Mark tasks as Completed
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 1. Capítulo 5
AVAILABLE TO ULTIMATE ONLY