coding
python
Intermediate
Python Script to Parse and Analyze CSV Data
Write a Python script that reads a CSV file named "data.csv", performs analysis, and outputs a summary report. The CSV has columns: [list your column names and types, e.g., date (YYYY-MM-DD), customer_id (str), product (…
💡 Use dtype parameter in pd.read_csv() to ensure columns load correctly. Always check df.info() and df…
👁 27 views
Open prompt →