select columns on the basis of dtype in ndarray code example
Example 1: selecting items in a column of a dataframe
df.loc[df['column_name'] == some_value]
Example 2: how to get a row of a dataframe with subset columns in python
df.iloc[1:3, 5:7]