标签:file 处理 panda das head data 实例化 ram index
Pandas 主要用于对数据的处理
import pandas as pd
pd.DataFrame() # 创建实例化对象 df
pd.ExcelFile()
pd.read_csv()
df.info()
df.head()
df.tail()
df.index
df.colums
df[]
df[[]]
df.loc[]
df.iloc[]
标签:file 处理 panda das head data 实例化 ram index
原文地址:https://www.cnblogs.com/leo2018/p/11975869.html