📜  pandas read_csv drop column - Python 代码示例

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

代码示例1
# Read column names from file
cols = list(pd.read_csv("sample_data.csv", nrows =1))
print(cols)
# Define unused cols
unused = ['col1', 'col2']
# Use list comprehension to remove the unwanted column in **usecol**
df= pd.read_csv("sample_data.csv", usecols =[i for i in cols if i not in unused])