I have a pandas dataframe like:
_Ab _Bc C D _Ef _Fg
0 a 4 7 1 5 a
1 b 5 8 3 3 a
2 c 4 9 5 6 a
3 d 5 4 7 9 b
4 e 5 2 1 2 b
5 f 4 3 0 4 b
I want to remove the starting _ present in some of the column names. Obviously I can replace them one at a time but that would be very inefficient as I have a lot of columns. So how can I do this efficiently?