#Author: James Tam #Version: October 31, 2025 (Boo!) #Learning objective (extra practice for 2D lists since there haven't been #a great deal of opportunity to do this with existing graded components). #*Tracing a 2D list example with a common logic error aList = [[1,1,1,1], [2,2,2,2], [3,3,3,3], [4,4,4,4]] numRows = len(aList) #List is rectangular and a 2D list consists of rows of 1D lists so the width #of any row is the number of columns. numColumns = len(aList[0]) r = 0 while(r