Python dataFrame 中查询操作

# df.loc[index, column_name],选取指定行和列的数据
df.loc[0,'Name'] # 'ZHBB01A005'
df.loc[0:2, ['Name','Comments']]  # 选取第0行到第2行,Name和Comments列的数据, 注意这里的行选取是包含下标的。
df.loc[[2,3],['Name','Comments']]  # 选取指定的第2行和第3行,Name和Comments列的数据
df.loc[df['Name']=='ZHBB01A005','Comments']  # 选取Nmae列是ZHB01A005,Comments列的数据
df.loc[df['Name']=='ZHBB01A005',[Comments','Type']]  # 选取Nmae列是ZHB01A005,Comments和Type列的数据

你可能感兴趣的:(python)