Sponsor Area

NCERT Solutions for Class 12 Clat Computer Science With Python Chapter 7 Data File Handling

Data File Handling Here is the CBSE Clat Chapter 7 for Class 12 students. Summary and detailed explanation of the lesson, including the definitions of difficult words. All of the exercises and questions and answers from the lesson's back end have been completed. NCERT Solutions for Class 12 Clat Data File Handling Chapter 7 NCERT Solutions for Class 12 Clat Data File Handling Chapter 7 The following is a summary in Hindi and English for the academic year 2025-26. You can save these solutions to your computer or use the Class 12 Clat.

Question 1
CBSEENCO12011548

Write a method in Python to read lines from a text file DIARY.TXT, and display those lines, which are starting with an alphabet ‘P’.

Solution
def display():
	file=open('DIARY.TXT','r')
	line=file.readline()
	while line:
		if line[0]=='P' :
			print line
			line=file.readline()
	file.close() #IGNORE

Sponsor Area