A patient with history of asthma is admitted to the emergenc…

A patient with history of asthma is admitted to the emergency department. The patient is tachypneic and anxious, and bilateral wheezes are auscultated. Which of the following should the respiratory therapist recommend?I. Aerosolized albuterol (ventolin)II. Intravenous methylprednisone (solumederol)III. Intravenous midazolam (versed)IV. Aerosolized cromolyn sodium (intal)

Review the code and dataframe: import pandas as pd data = {…

Review the code and dataframe: import pandas as pd data = { ‘City’: [‘New York’, ‘Los Angeles’, ‘Chicago’, ‘Houston’, ‘Phoenix’], ‘Population’: [8336817, 3979576, 2693976, 2320268, 1680992], ‘Area (sq miles)’: [468.9, 468.7, 227.3, 637.5, 517.6], ‘Median Income’: [60225, 67179, 57704, 49868, 58616] } cities_df = pd.DataFrame(data) print(cities_df) Output:   City Population Area (sq miles) Median Income 0 New York 8336817 468.9 60225 1 Los Angeles 3979576 468.7 67179 2 Chicago 2693976 227.3 57704 3 Houston 2320268 637.5 49868 4 Phoenix 1680992 517.6 58616 How would you use .iloc to extract the population of Chicago from the cities_df DataFrame?