Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 479 Bytes

File metadata and controls

18 lines (11 loc) · 479 Bytes

Create a numpy array of all zeros, with dimensions (3,4,2)

Let's start with a warm up task.

Write a function array_zeros that :

  • Will create a variable named as zeros_array with numpy array of dimensions (3, 4, 2)
  • Assigns that variable with numpy array of all zeros.

Parameters:

This function takes in no parameters

Returns:

Return dtype description
variable zeros_array numpy.ndarray An array of dimensions (3,4,2)