파일 열기 테스트 파일에 글쓰기 %%writefile test.txt Hello, this is a quick test file. This is the second line of the file. >>> Overwriting test.txt 파일 열어 내용 확인하기 my_file = open('test.text') my_file >>> my_file.read() >>> 'Hello, this is a quick test file.\nThis is the second line of the file.\n' (read()로 읽는다) my_file.read() >>> '' (다시 읽으려고 하면 내용이 나오지 않는다) my_file.seek(0) >>> 0 (커서 위치를 시작점으로 돌려야 한다) my_file.r..