Here is how to do it using tail.
tail
result = index.tail(10).iloc[:, :2]
.tail(10): Returns the last 10 rows of the DataFrame
.tail(10)
.iloc[:, :2]: Selects all rows (:) but only the first two columns (:2)
.iloc[:, :2]