df.iloc[:, :-2] code example
Example 1: iloc python
>>> df.iloc[[0, 1]]
a b c d
0 1 2 3 4
1 100 200 300 400
Example 2: what is .iloc[:, 1:2].values
>>> type(df.iloc[0])
<class 'pandas.core.series.Series'>
>>> df.iloc[0]
a 1
b 2
c 3
d 4
Name: 0, dtype: int64