"""
출처:프로그래머스,
https://school.programmers.co.kr/learn/courses/30/lessons/181902
"""
# 풀이 과정
def solution(my_string):
english = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u",
"v", "w", "x", "y", "z"]
result = []
english = "".join(english).upper()
print(my_string.count("a"))
for x in list(english):
result.append(my_string.count(x))
english = "".join(english).lower()
for y in list(english):
result.append(my_string.count(y))
return result