IniziaInizia gratis

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.

Questo esercizio fa parte del corso

Introduction to Python for Finance

Visualizza il corso

Istruzioni dell'esercizio

  • 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.

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

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

# Print only health care companies
health_care = ____
print(health_care)
Modifica ed esegui il codice