import string
string.ascii_lowercase # 소문자 abcdefghijklmnopqrstuvwxyz
string.ascii_uppercase # 대문자 ABCDEFGHIJKLMNOPQRSTUVWXYZ
string.ascii_letters #대소문자 모두 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
string.digits # 숫자 0123456789
'Engineering WIKI > Python' 카테고리의 다른 글
[Python] shutil 함수 (0) | 2019.07.03 |
---|---|
[Python] 객체와 인스턴스의 차이 (0) | 2019.07.03 |
[Python] 파이썬2,3 동시사용 (0) | 2019.07.02 |
[Python] is 와 ==의 차이점 (0) | 2019.05.30 |
[Python] tkinter 사용 (0) | 2019.02.14 |
[Python] 2.7 Encoding 에러 해결 (0) | 2019.01.26 |
[Python] 엑셀 코드(xlsx 파일 만들기) (0) | 2018.10.15 |
[Python]Using Python file in Shell Script [ 쉘 스크립트 내에서 파이썬 프로그램 실행 ] (0) | 2018.08.05 |