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'}

Your Submission

ℹ️ The AI reads and reviews your code — it does not run it. Runtime errors like missing files or wrong paths won't affect your score. Focus on writing clean, correct logic.
Submit your work — choose one or more options
OR
OR