LoslegenKostenlos loslegen

Who's in health care?

In this exercise, you are provided the names of companies with their associated sector, and your goal is to find all companies that are associated with health care sector.

numpy is imported as np and the arrays names and sectors are available in your workspace.

Diese Übung ist Teil des Kurses

Introduction to Python for Finance

Kurs anzeigen

Anleitung zur Übung

  • Find elements in sectors that are equivalent to 'Health Care' and assign the result to boolean_array.
  • Subset names using boolean_array and assign the result to health_care.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Create boolean array
boolean_array = (sectors == ____)
print(boolean_array)

# Print only health care companies
health_care = ____
print(health_care)
Code bearbeiten und ausführen