[정올] 1516 : 단어 세기
text = []
for i in range(200):
temp = input()
if(temp == 'END'):
break
else:
text.append(temp)
list_count = len(text)
result = []
for i in range(list_count):
temp = text[i].split()
result.append(temp)
# print(result)
w_count = {}
for i in range(1):
for test in result[i]:
try :
w_count[test] += 1
except :
w_count[test] = 1
print('\n')
# from collections import Counter
# wordDict = Counter()
# for i in range (list_count):
# for word in result[i]:
# try :
# wordDict[word] += 1
# except :
# wordDict[word] = 1
# for word, freq in wordDict.most_common(5):
# print(word,':', freq)
res = sorted(w_count.items())
print(res)
'Programming > Python' 카테고리의 다른 글
[정올] 2604:그릇 (0) | 2020.03.27 |
---|---|
[정올] 2814 : 이진수 (0) | 2020.03.25 |
[정올] 1534 : 10진수를 2,8,16진수로 (0) | 2020.03.25 |
[정올] 1430 : 숫자의 개수 (0) | 2020.03.25 |
[정올] 2809 : 약수 (0) | 2020.03.24 |
댓글
이 글 공유하기
다른 글
-
[정올] 2604:그릇
[정올] 2604:그릇
2020.03.27 -
[정올] 2814 : 이진수
[정올] 2814 : 이진수
2020.03.25 -
[정올] 1534 : 10진수를 2,8,16진수로
[정올] 1534 : 10진수를 2,8,16진수로
2020.03.25 -
[정올] 1430 : 숫자의 개수
[정올] 1430 : 숫자의 개수
2020.03.25