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
- html
- 단어 공부
- Python3
- 프로젝트
- ORDER BY
- GIT
- css
- 아이엠어바텐더
- date_format
- Django
- Len
- 백준
- 파이썬
- 파이썬 슬라이싱
- count
- 설계
- 코딩테스트 연습
- map
- Join
- 파이썬 몫
- pcce 기출문제
- List Comprehension
- python
- sql
- where
- 프로그래머스
- YOLOv5
- 슬라이싱
Archives
- Today
- Total
목록다이얼 (1)
nan + nan = 2nan
[백준][Python3] #5622. 다이얼
코드 입력 text = input() list_alpha = [chr(i) for i in range(ord('A'), ord('Z')+1)] alpha_dict = dict() for la in list_alpha: if la in list_alpha[:3]: alpha_dict[la] = 3 elif la in list_alpha[3:6]: alpha_dict[la] = 4 elif la in list_alpha[6:9]: alpha_dict[la] = 5 elif la in list_alpha[9:12]: alpha_dict[la] = 6 elif la in list_alpha[12:15]: alpha_dict[la] = 7 elif la in list_alpha[15:19]: alpha_dict[..
Python/백준 알고리즘
2023. 1. 15. 00:32