抱歉問個新手問題,小弟最近在學習python
import pandas as pd
# 讀入 csv 文字檔
csv_file =
"https://storage.googleapis.com/learn_pd_like_tidyverse/gapminder.csv"
gapminder = pd.read_csv(csv_file)
print(type(gapminder))
gapminder.head()
以上的程式碼在spyder裡面一直跑不出東西
可是我用jupyter就可以
https://i.imgur.com/QwRiU0j.png
想請問這是什麼問題@@
麻煩各位大大了