CSV file in Python notes Class 12
CSV File in Python CSV stands for Comma Separated Values. It is used to store tabular data (rows and columns). Data values are separated by commas (,). CSV files usually have .csv extension. Commonly used in Excel, databases, and data exchange. Example of CSV file- RollNo,Name,Marks 101,Aman,85 102,Riya,90 103,Rahul,78 CSV Module in Python Python provides…
