get first column df pandas code example
Example 1: get only first 10 columns pandas
df.iloc[:, : 50]
Example 2: make first row column names pandas
In [24]: df.drop(df.index[1])
Out[24]:
1 foo bar baz
0 1 2 3
2 4 5 6
df.iloc[:, : 50]
In [24]: df.drop(df.index[1])
Out[24]:
1 foo bar baz
0 1 2 3
2 4 5 6