You can pass the col list as the answer to the usecols parameter.
col_list = [0, 1]
df = pd.read_csv(filename, usecols = col_list, index_col=False, header=1)
CLICK HERE to find out more related problems solutions.
You can pass the col list as the answer to the usecols parameter.
col_list = [0, 1]
df = pd.read_csv(filename, usecols = col_list, index_col=False, header=1)
CLICK HERE to find out more related problems solutions.