📜  删除以 pandas 开头的列 - Python 代码示例

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

代码示例2
cols = [c for c in df.columns if c.lower()[:6] != 'string']
df=df[cols]