pandas print first column

23

pandas print first column -

df = pd.DataFrame({"Letters": ["a", "b", "c"], "Numbers": [1, 2, 3]})
first_column = df.iloc[:, 0]

Comments

Submit
0 Comments