← All Assignments
Read a CSV File
Problem Statement
Write a Python script that reads a CSV file called `students.csv` and prints every row to the console. The CSV has columns: name, age, grade. Use the `csv` module or `pandas`.
Sample Data
students.csv name,age,grade Alice,21,A Bob,22,B Carol,20,A
Expected Output
Each row printed, e.g.:
{'name': 'Alice', 'age': '21', 'grade': 'A'}
{'name': 'Bob', 'age': '22', 'grade': 'B'}