I have following dataframe:
one two
a 1.0 7.0
b 2.0 2.0
c 3.0 3.0
d 6.0 4.0
What I would like to do is to check for example for index a if each of the values in the columns is greater than 4. If one of the values is indeed greater the system prints the message that in "column name" value "x" is greater than 4. How can I accomplish that ?