Question: Make a function matrix(rows: int, cols: int) that returns a matrix of 'rows' rows and 'cols' columns where each value in the matrix is 0.Your

Make a function matrix(rows: int, cols: int) that returns a matrix of 'rows' rows and 'cols' columns where each value in the matrix is 0.Your function should have only one statement and must use list comprehensions.You'll earn only partial credit for solutions with more than one line.Be sure to include appropriate type hints.

e.g.

matrix(2, 3) == [[0, 0, 0], [0, 0, 0]] # 2 rows, each row has 3 columns 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!