I imported a csv that had 20 columns. I used the following to create a df to select only the columns that I needed:
df = pd.read_csv("./data/employees.csv",
usecols = ['ID','FIRSTNAME', 'LASTNAME','SALARY'],
index_col = ['ID'])
However, the order displayed when I call df is not the same as the one that I specified when reading the CSV file. Note how I used index_col to change the index. How can I choose the order when I'm first importing the data?