PyData Careers
20.7K subscribers
197 photos
4 videos
26 files
342 links
Python Data Science jobs, interview tips, and career insights for aspiring professionals.
Download Telegram
⁉️ Interview question
What will be the output of the following NumPy code snippet?

import numpy as np

arr = np.array([1, 2, 3, 4, 5])
result = arr[1:4:2] + arr[::2]
print(result)


<details><summary>Click to reveal</summary>Answer: [3 5]</details>

#️⃣ tags: #numpy #python #interviewquestion #arrayoperations #slicing #broadcasting

By: @DataScienceQ 🚀