csc-python-solutions/15/b/3 - Poetic Analysis.py

17 lines
309 B
Python
Raw Normal View History

2021-02-17 10:10:57 +00:00
txt = input().split()
while txt[-1] != "###":
txt += input().split()
amount = {}
for i in txt:
if i.lower() in amount:
amount[i.lower()] += 1
else:
amount[i.lower()] = 1
max = ["", 0]
for i in amount:
if amount[i] > max[1]:
max = [i, amount[i]]
else:
pass
print(max[0])