Sponsor Area
TextBook Solutions for Uttarakhand Board Class 12 Computer And Communication Technology Computer Science With Python Chapter 7 Data File Handling
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 Observe the following table MEMBER carefully and write the name of the RDBMS operation out of (i) SELECTION (ii) PROJECTION (iii) UNION (iv) CARTESIAN PRODUCT, which has been used to produce the output as shown in RESULT. Also, find the Degree and Cardinality of the RESULT.
| NO | MNAME | STREAM |
| M001 | JAYA | SCIENCE |
| M002 | ADIYTA | HUMANITIES |
| M003 | HANSRAJ | SCIENCE |
| M004 | SHIVAK | COMMERCE |
RESULT
| NO | MNAME | STREAM |
| M002 | ADIYTA | HUMANITIES |
Sponsor Area
Sponsor Area
Mock Test Series
Mock Test Series



