Computer Science, asked by owaisusmani8, 1 month ago

-PYTHON QUESTION-

Create a csv file for book(bno,bname.price,qty) read file contents and display value(price*qty).​

Answers

Answered by gauravmahara3675
0

Explanation:

csv file in reading mode using open() function. Then, the csv. reader() is used to read the file, which returns an iterable reader object. The reader object is then iterated using a for loop to print the contents of each row.

please mark me as brainliest

Answered by Vanshsheoran77336
0

Answer:

Python CSV

In this tutorial, we will learn how to read and write into CSV files in Python with the help of examples.

A CSV (Comma Separated Values) format is one of the most simple and common ways to store tabular data. To represent a CSV file, it must be saved with the .csv file extension.

Similar questions