Here is the DataFrame I am working with, for reference.
data2 = {'col10':[1.0, 2.0, 3.0, 4.0], 'col11':[100, 200, 300, 400]}
df = pd.DataFrame(data2, index = ['a', 'b', 'c', 'd'])
I'm trying to create a new DataFrame, df2, from the last two rows of this column. I'm not sure how to do this and would appreciate some tips.