Obtenha todas as colunas com nome específico em string
cols = [col for col in df.columns if 'word' in col]
Sooi Versavel
cols = [col for col in df.columns if 'word' in col]