(파이썬) 파이썬 소문자 알파벳만 나열/ 대문자 알파벳만 나열
파이썬 소문자/대문자 알파벳 나열 방법1 import string 소문자는 string.ascii_lowercase 대문자는 string.ascii_uppercase import string list_lower = list(string.ascii_lowercase) list_upper = list(string.ascii_uppercase) print(list_lower) print(list_upper) #['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] #['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H..
2021. 6. 17.