딕셔너리1 [파이썬] 자료형_딕셔너리 1. 숫자형 http://cleancode-ws.tistory.com/9 2. 문자열 자료형 http://cleancode-ws.tistory.com/8 3. 리스트 자료형 http://cleancode-ws.tistory.com/10 4. 튜플 자료형 http://cleancode-ws.tistory.com/11 5. 딕셔너리 자료형 특징: key 와 value 값을 갖음. 순서(index)가 없음. 길이 존재, 변경 가능, key값은 고유한 값으로 인식 make_dic = { 'key':'value' , 123:'일이삼' , 45:67 , '키':[160,180] }print(len(make_dic)) # 4, 길이 존재make_dic['정리'] = 90 print(make_dic) # 딕셔너리 요소.. 2018. 4. 8. 이전 1 다음 반응형