jupyter select column items 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[['A', 'C', 'D']].copy()
dataframe.iloc[:,[1,2]]
new = old[['A', 'C', 'D']].copy()