반응형
파일
-
Python: with open() 파일 읽기(read), 쓰기(write), 덧붙히기(append), strip(), split() 함수란?Python 2020. 6. 30. 14:34
파일을 읽고 쓰기전에 필수적으로 알아야 하는 함수가 있습니다. 그래서 그 함수들부터 먼저 알아보도록 해보겠습니다. 1. strip() strip() 메서드는 앞뒤의 공백, 즉 앞뒤의 모든 화이트 스페이스들을 없애주는 기능을 합니다. print(" \n hello Panda \n \t ") print(" \n hello Panda \n \t ") print("-----------------------------------------") print(" \n strip hello Panda \n \t ".strip()) print(" \n strip hello Panda \n \t ".strip()) hello Panda hello Panda -------------------------------------..