감동, 마음이 움직이는 것
[python] dictionary key바꾸기 dic[newkey] = dic.pop(oldkey) 본문
Tips (Utility, Computer Language, and etc.)
[python] dictionary key바꾸기 dic[newkey] = dic.pop(oldkey)
Struggler J. 2017. 12. 22. 22:27https://stackoverflow.com/questions/30720673/renaming-the-keys-of-a-dictionary
>>> dic = {}
>>> dic["a"] = 10
>>> dic["b"] = 19
>>> dic
>>> {'a':10, 'b':19}
>>> dic["c"] = dic.pop("a")
>>> dic
>>> {'c':10, 'b':19}
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[python] utf-8로 모든 데이터 취급하기 (0) | 2017.12.25 |
---|---|
[학회+발표] (0) | 2017.12.23 |
[python] replace characters in the string (0) | 2017.12.21 |
[python] string안에 여러 특정 문자가 포함되어 있는지 알고 싶을 때 (2) | 2017.12.20 |
[python] array type변경 (0) | 2017.12.14 |