我有一个数据帧df
c1 c2
name sample
person1 a1 aaa AAA
b1 bbb BBB
c1 ccc CCC
person2 d1 ...
我想将任何函数应用于所有索引(级别1)值。比如说,举个例子,通过这个函数删除索引中的最后一个字母(它们是字符串):
def remove_last_letter(x)
x = x[:-1]
return x
得到这个:
c1 c2
name sample
person1 a aaa AAA
b bbb BBB
c ccc CCC
person2 d ...
如何调用这样的函数?