웹에 있는 텍스트 파일을 읽어서 렌파이에 띄우기.. label splashscreen: python: import urllib # 아래의 문자열에 적힌 주소에 있는 파일을 읽어서 렌파이에서 읽을 수 있게 한다. a = urllib.urlopen("http://baekansi.hosting.paran.com/data/Quietdrive-jessica.txt") # 텍스트파일은 저장할 때 인코딩을 utf-8로 설정하고 저장해야한다. ReleaseNotes = a.read().decode("utf-8") # a를 읽고 그것을 utf-8로 디코드 vp=ui.viewport(draggable=True, mousewheel=True, xmaximum=680,ymaximum=240, xalign=0.5, yalign=.85) ui.frame() ui.vbox() ui.. 더보기 이전 1 ··· 174 175 176 177 178 179 180 ··· 196 다음