1In [7]: df.index.name
2Out[7]: 'Index Title'
3
4In [8]: df.index.name = 'foo'
5
6In [9]: df.index.name
7Out[9]: 'foo'
8
9In [10]: df
10Out[10]:
11 Column 1
12foo
13Apples 1
14Oranges 2
15Puppies 3
16Ducks 4
17