Computer Science, asked by goldyrathi10, 6 months ago

Q4. WAP to write data into “student”, CSV file using writerow()​

Answers

Answered by Anonymous
1

Answer:

Reading and Writing CSV File using Python

writer() This function in csv module returns a writer object that converts data into a delimited string and stores in a file object. ...

writerow() This function writes items in an iterable (list, tuple or string) ,separating them nby comma character.

writerows() ...

read() ...

DictWriter() ...

writeheader() ...

DictReader(

Explanation:

hope you are satisfied with the answer

Similar questions