Challenge: NumPy Essentials

Complete this challenge to practice what you’ve learned about NumPy essentials so far.

We'll cover the following

Perform the following tasks:

  1. Generate a vector array of 25 numbers using arange().
  2. Write a code to convert the vector array into a 2-D matrix using reshape.
  3. Add a scalar value 100100 to all the values in the array.
  4. Return the array.

Input

N/A

Output

The method should return a matrix of numbers containing values from 100 to 124.

Sample output

[[100 101 102 103 104] [105 106 107 108 109] [110 111 112 113 114] [115 116 117 118 119] [120 121 122 123 124]]

Get hands-on with 1200+ tech skills courses.