In [1]:
# Insert List with Integers
patient_ages = [25, 34, 45, 52, 63]
patient_ages.append(29)
patient_ages.insert(2, 40)
print(patient_ages)
[25, 34, 40, 45, 52, 63, 29]
In [2]:
# Insert List with Strings
patient_names = ["Alice", "Bob", "Charlie", "Diana"]
patient_names.append("Eve")
patient_names.insert(1, "Frank")
print(patient_names)
[''''Alice'''', ''''Frank'''', ''''Bob'''', ''''Charlie'''', ''''Diana'''', ''''Eve'''']
In [3]:
import pprint
# Insert List with Dictionaries
patient_records = [
{"name": "Alice", "age": 25, "condition": "Hypertension"},
{"name": "Bob", "age": 34, "condition": "Diabetes"},
]
new_patient = {"name": "Charlie", "age": 45, "condition": "Asthma"}
patient_records.append(new_patient)
another_patient = {"name": "Diana", "age": 52, "condition": "Arthritis"}
patient_records.insert(1, another_patient)
pprint.pp(patient_records)
[{''''name'''': ''''Alice'''', ''''age'''': 25, ''''condition'''': ''''Hypertension''''}, {''''name'''': ''''Diana'''', ''''age'''': 52, ''''condition'''': ''''Arthritis''''}, {''''name'''': ''''Bob'''', ''''age'''': 34, ''''condition'''': ''''Diabetes''''}, {''''name'''': ''''Charlie'''', ''''age'''': 45, ''''condition'''': ''''Asthma''''}]