Let's say I have the following data set:
import pandas as pd
df = pd.DataFrame(
{'A': [1, 2, 3],
'B': ['one', 2, 3],
'C': [4, 5, '6Y']
})
I would like to find out - without any cumbersome for loop - which columns contain at least one case with an alphabetical letter (here: B and C). I guess the result should either be a list of booleans or indices.
Thank you for your help!