Computer Science, asked by starbhalla565, 4 days ago

Q! . Python program to create csv file named (book_details.csv) , which must contain books records (title, author, publisher, ISBN, Language, Publication_Date, MRP).

Write a program(menu based) to search/ add/ update books details from above created csv file book_details.csv

Answers

Answered by ooOOooTanyaooOOoo
0

CSV is a simple file format used to store tabular data such as a spreadsheet or a database. CSV stands for Comma Separated Values. The data fields in a CSV file are separated/delimited by a comma (‘, ‘) and the individual rows are separated by a newline (‘\n’). CSV File management in C++ is similar to text-type file management, except for a few modifications.

Similar questions