Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

CSV Column Summarizer

Reads a CSV file and calculates sums, averages, and counts for numeric columns.

How to Run

python csv_column_summarizer.py

Example Input: data.csv:

Name,Math,Science,English
Divya,90,85,92
Sumanth,80,78,88
Aarav,75,,91

Example Output:

Column               Count          Sum      Average
--------------------------------------------------
Math                     3        245.00        81.67
Science                  2        163.00        81.50
English                  3        271.00        90.33