2108 통계학 / 정렬 / 딕셔너리
Dictionarykey- value 로 이루어진 순서가 없는 자료형선언 : f = {} #최빈값을 저장할 딕셔너리삽입 : f[n] = 1print(student.items()) # 출력: dict_items([('name', 'John'), ('age', 21), ('year', 3)])print(student.keys()) # 출력: dict_keys(['name', 'age', 'year'])print(student.values()) # 출력: dict_values(['John', 21, 3]) 정답최빈값을 구하기 위해서 딕셔너리를 선언하여 입력around(값) -> 소수점 0번째 자리까지 반올림해서 출력 : 1.6. -> 2around(값, 1) -> 소수점 1번째 자리까지 반올림해서 출력..