When using loc, it seems I can either specify a list with separate column labels or a slice.
However, can I combine a slice with an additional column label and -if so- how?
I tried
JavaScript
x
2
1
games.loc[games.Platform.isin(['X360']),['Platform','NA_Sales':'Other_Sales']]
2
but this throws a syntax error…
Advertisement
Answer
Solution with loc
JavaScript
1
2
1
df.loc[:, ['D', *df.loc[:, 'A':'C'].columns]]
2
JavaScript
1
10
10
1
D A B C
2
0 1 1 a a
3
1 2 1 a a
4
2 3 1 a a
5
3 1 2 a a
6
4 -1 2 a a
7
5 -1 3 a a
8
6 -2 3 a a
9
7 -3 3 a a
10