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
Anleitung zur Übung
- Find elements in
sectors
that are equivalent to'Health Care'
and assign the result toboolean_array
. - Subset
names
usingboolean_array
and assign the result tohealth_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)