코테 준비를 하며 여러 문제를 풀다보면
특히, 문자열 구현 문제를 풀다보면
알파벳 리스트를 사용해야 하는 경우가 꽤 많다.
하드코딩으로 리스트를 생성할 수도 있는데 너무 번거롭기 때문에
간단한 방법을 정리해 놓으려고 한다.
1. 아스키 코드 변환 이용
alpa=[chr(i) for i in range(ord('a'), ord('z')+1)]
2. string 모듈 이용
from string import ascii_lowercase # ascii_uppercase : 대문자
alpa=[i for i in ascii_lowercase]
728x90
'컴퓨터 > python' 카테고리의 다른 글
[python] collections 모듈 - Counter (0) | 2023.06.30 |
---|---|
[python] 문자열로 된 식을 계산하기 - eval, exec (0) | 2023.06.15 |
[python] 중복 순열과 중복 조합 (0) | 2023.06.13 |
[python] Permutations와 Combinations (순열과 조합) (0) | 2023.06.10 |
[Python][Error] ValueError: invalid literal for int() with base 10: '\n' (0) | 2023.05.11 |