728x90
Dictionary key name을 수정할 수 있는 방법으로 다음과 같이 두 가지 방법이 있다.
# -- 1
dictionary[new_key] = dictionary[old_key]
del dictionary[old_key]
# -- 2
dictionary[new_key] = dictionary.pop(old_key)
[ref]
https://stackoverflow.com/questions/4406501/change-the-name-of-a-key-in-dictionary
728x90
'Temp' 카테고리의 다른 글
[Pytorch] model 불러와서 resume 하는 방법 (0) | 2021.11.27 |
---|---|
[parafac] not enough values to unpack (expected 4, got 2) (0) | 2021.11.26 |
[CV2] ImportError: libGL.so.1: cannot open shared object file: No such file or directory (0) | 2021.11.26 |
[Anaconda] 안쓰는 패키지 정리 (0) | 2021.11.26 |
[Git] Reset (0) | 2021.11.25 |