0% found this document useful (0 votes)
3 views16 pages

Python CSV File Handling Guide

The document provides an overview of working with CSV files in Python, including how to read, write, and modify them. It includes examples such as a Movie List Program and a trip data manipulation project. References for further reading are also provided.

Uploaded by

Ragavan Murali
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views16 pages

Python CSV File Handling Guide

The document provides an overview of working with CSV files in Python, including how to read, write, and modify them. It includes examples such as a Movie List Program and a trip data manipulation project. References for further reading are also provided.

Uploaded by

Ragavan Murali
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Files I/O in python

csv files
Jeya Pandian. M
APII/CSE
Srinivasa Ramanujan Centre
SASTRA
Work with csv files

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 2


How to write csv files

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 3


How to write csv files

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 4


How to read csv files

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 5


Example: Another way

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 6


Modify csv files: Some optional arguments

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 7


Modify csv files: Some optional arguments

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 8


Try: Movie List Program (csv style)

Hierarchy chart:
main()
-menu()
1.list_movies()
2.add_movie()
3.del_movie()

write_movies()
read_movies()

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 9


Example: Movie List Program

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 10


Example:

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 11


Example:

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 12


Example:

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 13


Example:

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 14


Try! Create and Manipulate trip data
using csv file

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 15


References
 Textbook: “Python programming - beginner to pro”
by Michael Urban, Joel Murach,2016.
 Mark Lutz, Learning Python, O’Reily Media, Fifth
Edition, 2013.

CSE304-Python Programming with Web Frameworks Jeya Pandian.M/AP/CSE/SRC 16

You might also like