Given a binary file “STUDENT.DAT”, containing records of the following
type:
[S_Admno, S_Name, Percentage]
Where these three values are:
S_Admno – Admission Number of student (string)
S_Name – Name of student (string)
Percentage – Marks percentage of student (float)
Write a function in PYTHON that would read contents of the file
“STUDENT.DAT” and display the details of those students whose
percentage is above 75.
Answers
Answered by
1
Explanation:
containing records of the following
type:
[S_Admno, S_Name, Percentage]
Where these three values are:
S_Admno – Admission Number of student (string)
S_Name – Name of student (string)
Percentage – Marks percentage of student (float)
Write a function in PYTHON that would read contents of the file
“STUDENT.DAT” and display the details of those students whose
percentage is above 75.
Similar questions