without haste but without rest

[python] 알파뱃 리스트 본문

ProgrammingLanguage/Python

[python] 알파뱃 리스트

JinungKim 2020. 7. 10. 11:55

 

import string

lower = string.ascii_lowercase
upper = string.ascii_uppercase
total = string.ascii_letters  # 대소문자 (소문자 -> 대문자 순서)

# 리턴값은 string
# list 씌우면 바로 리스트로 사용가능
Comments