본문 바로가기

Algorithm/알고리즘

[Python] 알파벳 리스트 쉽게 만들기

from string import ascii_lowercase

lst = list(ascii_lowercase)

 

'Algorithm > 알고리즘' 카테고리의 다른 글

[Python] 입력이 끝날 때까지  (0) 2023.02.10
[Python] 팩토리얼 함수  (0) 2023.01.31
[Python] set 연산  (0) 2023.01.07
[Python] 문자열에서 find 함수  (0) 2023.01.01
[백준 1929번] set 정렬  (0) 2022.11.27