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 may expect this would show some row after seeing how other does. But this only appear only in terminal environment. Just like the above answer, you need an print() to show row while you are using ide
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.