I have this dataframe :
index B C D
0 8 7 9
1 6 2 7
2 7 6 9
I would like to have this output:
index B C D
0 8 7 9
1 6 2 7
2 7 6 9
... ....
n-1 0 0 0
n 0 0 0
I tried but couldn't do it. Thanks !!