Problem Statement - B04B-2017D
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
CSKC| Created: 12-Jan-2019 | Updated: 12-Jan-2019|CBSE12D-2017
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’.
|
def display(): file=open('DIARY.TXT','r') line=file.readline() while line: if line[0]=='P' : print line line=file.readline() file.close() #IGNORE
CSKC| Created: 12-Jan-2019 | Updated: 12-Jan-2019|CBSE12D-2017