Report_Card.loc[:,"Grades"]
The first argument ( : ) signifies which rows we would like to index,
and the second argument (Grades) lets us index the column we want
import pandas as pd
df = pd.read_csv("file path.csv")
df["column name"]
#columns in Pandas documentation
#import numpy as np
import pandas as pd
a = pd.DataFrame()
b = pd.DataFrame([[1,2,3,4],[5,6,7,8],[2,7,3,23],[3,6,8,23],[23,23,63,12]],columns=['A', 'B', 'C', 'D'])
print(b)