Si un nom de colonne spécifique est présent, déposez la colonne Tyhe
df.columns.str.startswith('Test')
# array([ True, False, False, False])
df.loc[:,~df.columns.str.startswith('Test')]
toto test2 riri
0 x x x
1 x x x
Spotted Tailed Quoll