Project 13: Job Listings Merger
Data Engineer
Builds on these lessons
Current Task
Objective
np.concatenate() joins two or more arrays end-to-end into one — the array equivalent of combining two lists.
Task: combine a remote_jobs array and an onsite_jobs array into one all_jobs array and print it.
index.py
import numpy as np
remote_jobs = np.array(['Engineer', 'Designer'])
onsite_jobs = np.array(['Manager', 'Analyst'])
all_jobs = np.concatenate((remote_jobs, onsite_jobs))
print(all_jobs)
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview