Clear Doubts with Computer TutorIn case you’re facing problems in understanding concepts, writing programs, solving questions, want to learn fun facts | tips | tricks or absolutely anything around computer science, feel free to join CTs learner-teacher community: students.computertutor.in
#to make sure the file is empty open("test_res.txt", "w").close() # make a file object in read mode with open("test.txt" , "r") as test_file: data = test_file.readline() print(data) while(data): if(data.find("a") == -1): # make a file object in write mode with open("test_res.txt" , "a")as test_file2: test_file2.write(data+"\n") data = test_file.readline() print(data)
You cannot copy content of this page