Write the following function in PYTHON
a) display_PHU_summary() takes three input parameters, a 2D-list (similar to
>>> display_PHU_summary(database, dict, 2241)
PHU id: 2241
PHU name: Kingston Frontenac and Lennox & Addington Public Health
PHU city: Kingston, K7M 1V5
PHU website: www.kflaph.ca
Total cases: 1
>>> display_PHU_summary(database, dict, 3895)
PHU id: 3895
PHU name: Toronto Public Health
PHU city: Toronto, M5B 1W2
PHU website: www.toronto.ca/community-people/health-wellness-care/
Total cases: 2
>>> display_PHU_summary(database, dict, 3800)
The PHU Id is invalid
Step by step
Solved in 3 steps with 2 images