I am having a data frame
df = pd.DataFrame({'B': [1, 2, 3], 'C': [4, 5, 6]})
B C
0 1 4
1 2 5
2 3 6
I want to hide the serial number column. How to approach?
I am having a data frame
df = pd.DataFrame({'B': [1, 2, 3], 'C': [4, 5, 6]})
B C
0 1 4
1 2 5
2 3 6
I want to hide the serial number column. How to approach?