I am new to using pandas and I just don\'t know what to do with this :
I am using python. I have (properly) installed anaconda. In my file I simply create a DataFrame (f
You have to use:
print(dataframe.head()) print(dataframe['km']) print(dataframe[3:6])
Without the print statement python is just selecting the data but not doing anything with it.