1.获取行或列数据 loc——通过行标签索引行数据 iloc——通过行号索引行数据 ix——通过行标签或者行号索引行数据(基于loc和iloc 的混合) 同理,索引列数据也是如此! import pandas as pd data=[[1,2,3],[4,5,6],[7,8,9]] index=['a','b','c']#行号 columns=['d','e','f']#列号 df=pd.DataFrame(data,index=index,columns=columns)#生成一个数据框 输出…