Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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

Let's start with a warm up task. We will create a variable named as zeros_array containing all zeros and having dimensions (3, 4, 2)

You need to write a function array_zeros() which assigns the variable zeros_array with numpy array of all zeros.

Parameters:

This function takes in no parameters

Returns

This function returns an array of dimensions (3,4,2)