Beginner in coding, need help with this homework problem: Consider all columns whose name starts with "Cl" (Classification, Clustering, and assume that there could be many others). Retrive the rows of those people with the same value in all of their "Cl" columns. For example, you should return a person with 4.0 in all of the Cl columns, or a person with 3.0 in all of the Cl columns; but you should NOT return a person with 4.0 in all Cl columns except for one column where there is a 3.0. Hint: Start by computing the maximum and minimum value across the "Cl" columns for each student.
I'm not sure where to start with this problem? Cant quite understand whats being asked?
Picture of sample data set: [1]: https://i.stack.imgur.com/xglFm.png
The dataframe given code:
import pandas as pd
df = pd.read_csv("cleaned_survey.csv", index_col=0)
df.drop(['ProgSkills','Languages','Expert'],axis=1,inplace=True)