pandas passing values in column to iloc code example
Example 1: select columns pandas
df1 = df.iloc[:,0:2] # Remember that Python does not slice inclusive of the ending index.
Example 2: loc and iloc in pandas
iloc - default indexes (system generated)
loc - table indexes or we manually given indexes