हिंदी
तमिलनाडु बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान कक्षा १२

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

Advertisements
Advertisements

प्रश्न

Write a Python program to modify an existing file.

संक्षेप में उत्तर

उत्तर

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 13: Python and CSV files - Evaluation [पृष्ठ २६६]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 12 TN Board
अध्याय 13 Python and CSV files
Evaluation | Q 2. | पृष्ठ २६६
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×