python 파일 작업 에서 줄 의 인 스 턴 스 를 삭제 합 니 다.

848 단어 python줄 삭제
contine 으로 이번 순환 을 건 너 뛰 면 됩 니 다.

#    
Yesterday when I was young
        
The tasting of life was sweet
        
As rain upon my tongue
tasting
I lived by night and shunned the naked light of day
tasting123
And only now I see how the time ran away
tasting
 
tasting
텍스트 의 tasting 123 을 삭제 합 니 다.

with open("fileread.txt","r",encoding="utf-8") as f:
 lines = f.readlines()
 #print(lines)
with open("fileread.txt","w",encoding="utf-8") as f_w:
 for line in lines:
  if "tasting123" in line:
   continue
  f_w.write(line)
이 python 파일 작업 에서 한 줄 을 삭제 하 는 인 스 턴 스 는 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기