본문 바로가기

컴퓨터/python

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

파이썬에서 알파벳 리스트를 만드는 방법은 간단하다.

 

string 모듈에서 만들고자 하는 알파벳 리스트를 import해주면 된다.

 

from string import ascii_lowercase

alist=list(ascii_lowercase)

# 대문자 리스트를 만들고 싶은 경우, lowercase->uppercase로 바꾸어 주면 된다.

 

728x90