Dayeonyeonnan.hashnode.dev·Jan 2, 2024[python study note] 사전1. 사전 key-value pair. 키와 값이 쌍을 이룬다. dictionary = { 5:25, 2:4, 3:9 } #값을 가져오려면 대괄호 안에 키를 넣어주면 된다. print(dictionary[5]) #25 사전에 새로운 쌍 추가하기 dictionary[9] = 18 print(dictionary) #{5: 25, 2: 4, 3: 9, 9: 18} 2. 사전과 리스트의 차이점 사전과 리스트는 비슷해 보이지...Python Study NotePythonAdd a thoughtful commentNo comments yetBe the first to start the conversation.