스터디/파이썬 스터디 과제

[1팀/이도연] 7차시 파이썬과제 - 자료구조

알 수 없는 사용자 2023. 5. 18. 12:31
word = input().upper()

cnt = dict()
for i in word:
    if i in cnt:
        cnt[i] += 1
    else:
        cnt[i] = 1

max = max(cnt.values())
rst = list()
for k, v in cnt.items():
    if v == max:
        rst.append(k)

if len(rst) == 1:
    print(rst[0])
else:
    print('?')

1.

2. 1

 

3. 6

 

4.  4

 

 

5.   1

6.  4

7.  3

 

8.    1