카테고리 없음

파이썬 메모장 파일 한줄씩 삭제

행복을전해요 2021. 8. 18. 17:35

파이썬 메모장 파일 한줄씩 삭제

            with open("./ㅇㅇ.txt", "r",encoding='utf-8') as f:
                copies = f.readlines()
            with open("./ㅇㅇ.txt", "w",encoding='utf-8') as f:
                for i in range(1, len(copies)):
                    f.write(copies[i])
            j = j +1