English
Tamil Nadu Board of Secondary EducationHSC Science Class 12

Write a Python program to modify an existing file. - Computer Science

Advertisements
Advertisements

Question

Write a Python program to modify an existing file.

Answer in Brief

Solution

Coding:

import csv ,
row = [‘3: ‘Meena’Bangalore’]
with opent’student.csv; ‘r’) as readFile:
reader = csv.reader(readFile)
lines = list(reader) # list()- to store each
row of data as a list
lines [3] = row
with open (student.csv, ‘w’) as writeFile:
# returns the writer object which converts the user data with delimiter
writer = csv.writer(writeFile)
#writerows()method writes multiple rows to a csv file
writer, writerows(lines)
readFile.close()
writeFile. close()

Original File:

Roll No Name

City

1 Harshini, Chennai
2 Adhith, Mumbai
3 Dhuruv Bangalore
4 egiste, Tirchy
5 Venkat Madurai

Modified File after the coding:

Roll No Name

City

1 Harshini, Chennai
2 Adhith, Mumbai
3 Meena Bangalore
4 egiste, Tirchy
5 Venkat Madurai
shaalaa.com
Writing Data into Different Types in CSV Files
  Is there an error in this question or solution?
Chapter 13: Python and CSV files - Evaluation [Page 266]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 12 TN Board
Chapter 13 Python and CSV files
Evaluation | Q 2. | Page 266
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×