We can use pandas to read the above csv file and print the values of 'Country' column
import pandas
df = pandas.read_csv('countries.csv')
print(df)
# Print a column value
print('\nPrinting country names....')
for name in df['Country']:
print(name)
$ python pd_read_csv.py
Country Capital Continent
0 England London Europe
1 United States Washington, D.C. North America
2 India New Delhi "Asia"
3 Brazil BrasÃlia South America
4 Australia Canberra Oceania
Printing country names....
England
United States
India
Brazil
Australia
Comment here