[Python] list 를 text file 에 한줄씩 쓰기 ( \n 안나오게 )
Python List 의 각 요소를 text file 에 한줄씩 쓰기 testList = ['123', '456', 'abc', 'def'] 123 456 abc def filePath = './test.txt' testList = ['123', '456', 'abc', 'def'] with open(filePath, 'w+') as lf: lf.write('\n'.join(testList)) # 이렇게 하면 안됩니다~ 그런데 문제는 저 텍스트 파일을 읽어 들이면? filePath = './test.txt' testList = ['123', '456', 'abc', 'def'] with open(filePath, 'w+') as lf: lf.write('\n'.join(testList)) with ope..
2020. 9. 5.