IT is Smart

파이썬 딕셔너리 사용하기, Use Dictionary 본문

Programming/Python Basic

파이썬 딕셔너리 사용하기, Use Dictionary

달인최선 2016. 8. 30. 21:26
반응형

이번에는 딕셔너리라고 부르는 자료형에 대해 알아보겠습니다.

파이썬 IDLE를 실행한 후 편집기를 열고 코드를 따라해보세요.

classmates = {'Tony': ' cool but smells', 'Emma': ' sits behind me', 
              'Lucy': ' asks too many questions'}

for k, v in classmates.items():
    print(k + v)

예제에서 보다시피 Dictionary 자료형은 { }로 구성요소들을 묶어줍니다. Set와 같은 모양입니다.

Set와 다른 점은 구성요소가 KEY:VALUE가 한 쌍으로 되어 있다는 것입니다.


개별적으로 값을 찾는 방법은

classmates['Tony'] 라고 입력하면 ' cool but smells'가 리턴됩니다.


--------------------
Source Code from thenewboston Tutorials
좋은 코드는 볼수록 Insight를 주고, 반복할수록 내 것과 같이 된다.



반응형