EOF 를 만날 때까지, 파일 읽기를 반복합니다. f = open('myfile.txt', 'r') while True: line = f.readline() if not line: break raw = line.split() print(raw) ...
確定! 回上一頁