Advertisements
Advertisements
Question
Write a program in Python that defines and calls the following user-defined functions:
- Add_Book(): Takes the details of the books and adds them to a CSV file ‘Book. csv'. Each record consists of a list with field elements such as
book_ID
, B_name andpub
to store book ID, book name and publisher, respectively. - Search_Book(): Takes publisher name as input and counts and displays the number of books published by them.
Solution
import csv
def Add_Book():
bid=""
bname=""
pub=""
f=open(“Book.csv”,"w” newline=")
bookwriter=csv.writer(f)
ans="y’
bookrec=[]
while ans=='y':
bid=input(“Enter book id :")
bname=input(“Enter book name :")
pub= input(“Enter publisher :")
rec=( bid,bname,pub)
bookrec.append(rec)
ans=input(“Continue(y/n)”)
bookwriter.writerows(bookrec)
f.close()
def Search_Book():
count=0
pub=""
p=""
pub=input(“Enter publisher name to search :")
with open(“Book.csv”,"r”, newline =")
as fh:
breader=csv.reader(fh)
for rec in breader:
p=str(rec[2])
if p==pub:
count+=1
print(“No. of books published by “, pub,”=" count)
fh.close()
APPEARS IN
RELATED QUESTIONS
Observe the following program carefully, and identify the error:
def create (text, freq):
for i in range (1, freq):
print text
create(5) #function call
Write a program that creates a GK quiz consisting of any five questions of your choice. The questions should be displayed randomly. Create a user-defined function score() to calculate the score of the quiz and another user-defined function remark (scorevalue) that accepts the final score to display remarks as follows:
Marks | Remarks |
5 | Outstanding |
4 | Excellent |
3 | Good |
2 | Read more to score more |
1 | Needs to take an interest |
0 | General knowledge will always help you. Take it seriously. |
Write a function EOReplace() in Python, which accepts a list L of numbers. Thereafter, it increments all even numbers by 1 and decrements all odd numbers by 1.
Example:
If Sample Input data of the list is:
L = [10, 20, 30, 40, 35, 55]
Output will be:
L = [11, 21, 31, 41, 34, 54]
Write the output of the code given below:
def short_sub (1st, n):
for i in range (0, n):
if len (1st) > 4:
lst [i] = lst [i] + lst [i]
else:
lst [i] = lst [i]
subject = ['CS', 'HINDI', 'PHYSICS', 'CHEMISTRY', 'MATHS']
short_sub (subject, 5)
print (subject)
Write the output of the code given below:
a = 30
def call (x):
global a
if a%2==0:
x+=a
else:
x−=a
return x
x=20
print (call (35), end="#")
print (call (40), end="@")
What will be the output of the following statement:
print(3-2**2**3+99/11)