# 1. after installing pandas, import it. import pandas as pd # 2. pass the file path to the csv file as an argument. # 3. index_col=0 tells read_csv() that the first columns i.e NG, CA, BR, CH, FR should be used as row labels/indexes, # instead of using the default 0, 1, 2, 3, 4 as row indexes/labels. countries = pd.read_csv('3.csv', index_col=0) # 4. print out what countries contain print(countries)