i have an error that im really confuse for me i done right
Step 4
Complete the dictionary by adding the following three key-value pairs:
-
A key
diagnosiswith the value ofHypertension -
A key
medicationswith the value of the list['Lisinopril'] -
A key
last_visit_idwith the value ofV2301.
my answer
medical_records = [
{
'patient_id': 'P1001',
'age': 34,
'gender': 'Female',
'diagnosis': 'Hypertension',
'medications': ['lisinopril'], #here i looking for errors here
'last_visit_id': 'V2301'
}
]
error message
Sorry, your code does not pass. Keep trying.
You should have a medications key with the value of the list ['Lisinopril'] in your dictionary.
Im confuse i think i have follow the instructions
thanks
ron