Learn practical skills, build real-world projects, and advance your career
import pandas as pd
import jovian

In this assignment, we're going to analyze an operate on data from a CSV file. Let's begin by downloading the CSV file.

from urllib.request import urlretrieve

urlretrieve('https://hub.jovian.ml/wp-content/uploads/2020/09/countries.csv', 'countries.csv')
('countries.csv', <http.client.HTTPMessage at 0x7fd9efeaaf70>)

Let's load the data from the CSV file into a Pandas data frame.

countries_df = pd.read_csv('countries.csv')