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.
This exercise is part of the course
Introduction to Python for Finance
Exercise instructions
- 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
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Create boolean array
boolean_array = (sectors == ____)
print(boolean_array)
# Print only health care companies
health_care = ____
print(health_care)