티스토리 뷰
안타깝게도 바로 a몇개, b몇개 알려주는 함수는 없지만 구할 수는 있다!!
string = input()
Alphabet = 'abcdefghijklmnopqrstuvwxyz'
pt_freq = [0] * 26
for ch in string:
if ch in Alphabet:
idx = Alphabet.find(ch)
pt_freq[idx] += 1
for i in range(0,26):
print(pt_freq[i], end=" ")
스트링 한글자씩 돌면서, 알파벳 집합에 대해서 index를 찾아서 그 값을 추가해준다.
'PL > Python' 카테고리의 다른 글
[Python] 배열 띄어쓰기로 구분해서 print하기 (0) | 2021.07.12 |
---|---|
[Python] int 2진수로 바꾸기 (0) | 2021.07.07 |
[Python] list에서 모든 조합 구하기 (0) | 2021.06.27 |
[Python] 함수 제일 첫번째 인자 self의 의미, new와 init함수의 의미, underbar(_) 변수의 의미 (0) | 2021.05.30 |
파이썬 string reverse 하기 (0) | 2021.01.28 |