Welcome to the Python screen.
The question is on your right: Filter High Severity CSV Alerts. Read through the requirements first.
Run and submit your code as often as you need. You also have five interviewer messages this session - want to talk through your approach, or are you ready to start coding?
Given a CSV-formatted string csv_text representing network alerts, return a list of alert IDs whose severity is high. The first line is the header and includes at least the columns alert_id and severity. Ignore rows with missing required fields, and match severity case-insensitively.
alert_id and severitydef filter_high_severity_alerts(csv_text):