250x250
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 |
Tags
- SQL 고득점 Kit
- 단어 공부
- 코딩테스트 연습
- ORDER BY
- 프로젝트
- 파이썬
- 백준
- html
- pcce 기출문제
- Django
- 파이썬 몫
- Join
- python
- count
- Len
- 데이터
- GIT
- 파이썬 슬라이싱
- map
- YOLOv5
- date_format
- 슬라이싱
- 설계
- 프로그래머스
- List Comprehension
- where
- css
- sql
- Python3
- 아이엠어바텐더
Archives
- Today
- Total
nan + nan = 2nan
[백준][Python3] #10809. 알파벳 찾기 본문
728x90
코드 입력
text = input()
list_alphabet = [chr(i) for i in range(ord('a'), ord('z')+1)]
for a in list_alphabet:
print(text.find(a), end=' ')
앞서 풀었던 아스키 코드의 ord, chr를 활용해서 쉽게 풀 수 있었다.
우선 아스키 코드로 소문자 리스트를 생성해주고, for 문으로 대상 텍스트 위치를 print하면 끝!
출처 : 백준 Online Judge
https://www.acmicpc.net/problem/10809
'Python > 백준 알고리즘' 카테고리의 다른 글
[백준][Python3] #1157. 단어 공부 (0) | 2023.01.14 |
---|---|
[백준][Python3] #2675. 문자열 반복 (0) | 2023.01.14 |
[백준][Python3] #11720. 숫자의 합 (0) | 2023.01.14 |
[백준][Python3] #11654. 아스키 코드 (0) | 2023.01.14 |
[백준][Python3] #5597. 과제 안 내신 분..? (0) | 2023.01.14 |
Comments