
Question: Create a script that uses the attached countries_by_area.txt file as data sourceand prints out the top 5 most densely populated countries
Expected output:
India Pakistan Nigeria China Indonesia

Hint 1: Use pandas.

Hint 2: Once you load the data as a pandas dataframe, create a new column that is equal to the population column divided by the area column. Then use sort_values to sort the dataframe by density.