import pandas as pd df = pd.read_csv("stock_data.csv") df.head()
Is not showing the result: suggestion for improvement?
Try printing df.head(). In your notebook type: print(df.head())
df.head()
print(df.head())
You need to print df.head:
import pandas as pd df = pd.read_csv("stock_data.csv") print(df.head())
Try printing
df.head(). In your notebook type:print(df.head())