In [1]:
# List of patient ages
patient_ages = [18, 22, 34, 51]
print(patient_ages)
[18, 22, 34, 51]
In [2]:
# List of patient names
patient_names = ["Anna", "John", "Andrew", "Diana", "Lena"]
print(patient_names)
[''''Anna'''', ''''John'''', ''''Andrew'''', ''''Diana'''', ''''Lena'''']
In [3]:
# Sample healthcare data
patients = [
{"name": "Lena Doe", "age": 22, "condition": "Hypertension"},
{"name": "Andrew Smith", "age": 18, "condition": "Asthma"},
{"name": "Anna Davis", "age": 34, "condition": "Diabetes"},
{"name": "John Brown", "age": 66, "condition": "Heart Disease"}
]
for patient in patients:
print(f"Name: {patient[''''name'''']}, Age: {patient[''''age'''']}, Condition: {patient[''''condition'''']}")
Name: Lena Doe, Age: 22, Condition: Hypertension Name: Andrew Smith, Age: 18, Condition: Asthma Name: Anna Davis, Age: 34, Condition: Diabetes Name: John Brown, Age: 66, Condition: Heart Disease