a DataFrame name is df_y I want to find some data('K','m') on many columns so i made this code
df_y[df_y[['column1', 'column2', 'column3']].str.contains('K|M')]
then I could see a error "'DataFrame' object has no attribute 'str'"
i think the code has problem by containg many columns...
IDK how to make that correctly..!