I am creating a dataframe
from a CSV file. I have gone through the docs, multiple SO posts, links as I have just started Pandas but didn't get it. The CSV file has multiple columns with same names say a
.
So after forming dataframe
and when I do df['a']
which value will it return? It does not return all values.
Also only one of the values will have a string rest will be None
. How can I get that column?