Question: Python The function f4 creates and returns a quadratic matrix nxn. n is a parameter. assume that n>=1) in which all elements on 2 diagonals


Python The function f4 creates and returns a quadratic matrix nxn. n is a parameter. assume that n>=1) in which all elements on 2 diagonals are 1 and all other elements in the matrix are 0. example: f4 (5) will create 1 0 0 0 1 0 1 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 0 0 1 Complete the following code of the function f4 def f4 (n): return Requirements : The missing code Must be written in the signed place ONLY, after the word return. Reminder : a matrix is represented in Python by using list of lists
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
