程式碼:
import pandas as pd
head5=pd.util.testing.makeDataFrame().head(5) #前5筆
print (head5)
tail5=pd.util.testing.makeDataFrame().tail(10) #後10筆
print (tail5)
head5.to_csv('1.csv') # 寫成csv檔
#讀取線上 CSV 檔
df = pd.read_csv('http://bit.ly/kaggletrain') #從網頁讀取csv檔:鐵達尼號乘客資料
df.head()
print (df)
執行結果: