cols = df.columns.tolist()
tmp = cols[10] #11번째 column을
del cols[10]
cols.insert(1,tmp) #2번째 위치로
df = df[cols]
반응형
'Programming > python' 카테고리의 다른 글
간결한 python 문법을 쓰자 - one line condition (0) | 2022.04.12 |
---|---|
[vscode] 외부 모듈을 debug하고 싶을때 (0) | 2021.11.23 |
python 주석 (0) | 2020.01.17 |
python, 같은 라인에 print문 update하기 (0) | 2019.11.19 |
python, property decorator 을 이용한 get/set 구현 (0) | 2019.09.09 |