📌  相关文章
📜  如果存在特定列名,则删除列 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:57.501000             🧑  作者: Mango

代码示例1
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