-
파일을 불러와 원하는 줄만 뽑기. f = open('output.txt','r')data = f.readlines()print(data[3]) //0부터 시작하므로 4번째꺼를 가지고 온다.