file = open('filename', 'filemode')
file.write('문자열')
file.close()
file = open('파일명', '파일모드')
s = file.read()
file.close()
with open('파일명','파일 모드') as 파일객체:
코드
파일객체.writelines(문자리스트)
변수 = 파일객체.realines()
변수 = 파일객체.readline()
pickle.dump(객체, file)
객체 = pickle.load('파일', '파일모드')
참고