Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2025 Foundation Course
NEET 2025 Foundation Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
265k views
in Computer by (46.3k points)
closed by

A binary file “Book.dat” has structure [BookNo, Book_Name, Author, Price]. 

i. Write a user defined function CreateFile() to input data for a record and add to Book.dat . 

ii. Write a function CountRec(Author) in Python which accepts the Author name as parameter and count and return number of books by the given Author are stored in the binary file “Book.dat”

1 Answer

+1 vote
by (49.3k points)
selected by
 
Best answer

Using of any correct code giving the same result is also accepted.

import pickle 

def createFile(): 

fobj=open("Book.dat","ab") 

BookNo=int(input("Book Number : ")) 

Book_name=input("Name :") 

Author = input(“Author: “) 

Price = int(input("Price : "))

rec=[BookNo,Book_Name,Author,Price] 

pickle.dump(rec,fobj) 

fobj.close() 

def CountRec(Author): 

fobj=open("Book.dat","rb") 

num = 0 

try: 

while True: 

rec=pickle.load(fobj) 

if Author==rec[2]: 

num = num + 1 

except: 

fobj.close() 

return num

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

Categories

...