数据实例 tmp_data.head(5)
tmp_data.head(5)
tmp_data[0:3] # 取前三行
1)按照索引取值 tmp_data.iloc[3,0] # 取第三行第一列的值
tmp_data.iloc[3,0] # 取第三行第一列的值