**dictionary(딕셔너리, map, 연관 배열)**는 key → value 연관을 저장하여, key로 value를 **평균 O(1)**에 조회할 수 있게 합니다. set은 본질적으로 key는 있지만 value는 없는 map입니다. 멤버십만 저장합니다.
예시
python
text = .split()
counts = {}
word text:
counts[word] = counts.get(word, ) +
ages = {: , : }
ages[]
ages[] =
ages
