Python CSV: Read and Write CSV files
1) Create & Write a Simple CSV
name,age
Alice,20
Bob,222) Read Entire CSV
3) Read CSV as List
4) Write CSV with User Input
5) Read Only First Column
6) Read Only Second Column
7) Append a Row
8) Count Rows
9) Write CSV with Headers
10) Read with DictReader
11) Write with DictWriter
12) Increase Prices
13) Filter Rows
14) Save Filtered Rows
15) Convert CSV to List of Dicts
16) Sum Numeric Column
17) Average Price
18) CSV to Text File
19) Check for Header
20) Merge Two CSV Files
🧠 Concepts Practiced
Topic
What You Learn
📝 Starter Code Snippets
Last updated