1# Find all rows where ColumnA is stringA and give me columnC (Returns a list)
2df[df['columnA'] == 'stringA']['columnC']
3
4# Same logic but give me the value at columnC (Returns the first value)
5df[df['columnA'] == 'stringA']['columnC'].iat[0]
6
7# multiple arguments (parenthesis are required)
8df[(df['columnA'] == 'stringA') & (df['columnB'] >= 53)]['columnC'].iat[0]