Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- xcz.kr
- Database
- Web
- 백준
- wargame
- misc
- MySQL
- Web Hacking
- 그리디 알고리즘
- writeup
- 사칙연산
- cryptography
- SuNiNaTas
- CTF
- php
- C
- Text
- 써니나타스
- Forensics
- 구현
- HackCTF
- 수학
- N0Named
- 정렬
- Network
- Incognito
- 인코그니토
- Digital Forensics
- 문자열
- Python
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 10808번 알파벳 개수 본문
[Baekjoon/Python3] 10808번 알파벳 개수
# chr(), ord()
alp = [chr(i) for i in range(97, 123)]
cnt = []
inp = input()
for i in alp:
print(inp.count(i), end=' ')
alp = ['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']
cnt = []
inp = input()
for i in alp:
print(inp.count(i), end=' ')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10813번 공 바꾸기 (0) | 2020.12.06 |
---|---|
[Baekjoon/Python3] 10809번 알파벳 찾기 (0) | 2020.12.06 |
[Baekjoon/Python3] 10801번 카드게임 (0) | 2020.12.06 |
[Baekjoon/Python3] 10797번 10부제 (0) | 2020.12.06 |
[Baekjoon/Python3] 10773번 제로 (0) | 2020.12.06 |
Comments