select columns by list dataframe code example
Example 1: pandas iloc select certain columns
dataframe.iloc[:,[1,2]]
Example 2: select columns to include in new dataframe in python
new = old.filter(['A','B','D'], axis=1)
dataframe.iloc[:,[1,2]]
new = old.filter(['A','B','D'], axis=1)