Write a function (using Python) that takes a 3×3 list ofintegers and if the list does not contain all integer valuesbetween 1 and 9, return a list of the missing values. If all valuesare present returns None.
In [ ]:
Initialize a 3×3 two dimensional list with the following values: 1,9,5,4,7,6,3,8,2. Pass the array to the function and display the result.
In [ ]:
Initialize a 3×3 two dimensional list with the followingvalues:1,9,5,4,2,6,3,9,2.
Pass the array to the function and display the result.
In [ ]:
Expert Answer
Answer to Write a function (using Python) that takes a 3×3 list of integers and if the list does not contain all integer values be…