Computer Science, asked by Nareshk3373, 19 days ago

write a program to create a csv file with empid,name and mobile no and research empid update the record and display the record

Answers

Answered by sunitamadhur07
0

Answer:  

import csv

with open('people.csv', 'r') as file:

   reader = csv.reader(file)

   for row in reader:

       print(row)

Explanation:

Similar questions