python dictionary 예제
파이썬 dict 활용방법과 예제 사용해야하는 이유! 원하는 key만 지정해서 탐색할수있기때문에 메모리의 낭비를 줄일수있다. fruit = { 'count':4, 'country':'Korea', 'season':'Summer', 'types':['watermelon', 'mesil', 'koreanMelon', 'peach'] } 1. key 값만 가져오기 fruit.keys() //dict_keys(['count','country','season','types']) list(fruit.keys()) //['count','country','season','types'] list로 감싸줘야 list만 가져올수있음 2. value값만 가져오기 keys()대신에 values()로 바꾸면됨 fruit.value..