This doesn't work:
df.query('`Record Type` == "Keyword" &
`Campaign Status` == "enabled"')
But this does:
df.query('`Record Type` == "Keyword" & \
`Campaign Status` == "enabled"')
There are times when I don't use a \ within the parentheses of a function and it seems to work, and other times it doens't, and I am not able to identify why. My understanding was that there could be line breaks without a \ if there are parentheses surrounding the statement, but obviously my understanding is incorrect...