Given the following code: def myFunction (numList): for [ Select ] for num in row: if num == 0: [ Select] ') print (num, end=' print() table = [ [2, 3, 0, 6], [0, 3, 4, 5], [4, 5, 6, 0]] myFunction (table) Fill in the blanks in the code above so that the resulting output looks as follows: 2 3 6 3 4 5 4 5 6

Q&A Education