Dragonz Blog
개발사항 텍스트파일을 열고 모든 문자를 대문자로 변환 후 출력 fh = open('mbox-short.txt') for lx in fh : ly = lx.rstrip() print(ly.upper()) fh.close() END