I am trying to return a column name and index based on the item value. I have something like this:

So let's day I am trying to return index and column names of all values where value is > 0.75.
for date, row in df.iterrows():
for item in row:
if item > .75:
print index, row
I wanted this to return "traffic and robbery". However this returns all the values. I did not find answer to this in documentation, online or here. Thank you in advance.
df.head()into the question instead of using a screenshot. We can copy & paste the dataframe into our consoles that way..