contestada

Print the two-dimensional list mult_table by row and column. On each line, each character is separated by a space. Hint: use nested loops.

Respuesta :

The program is an illustration of a two-dimensional list

What are two-dimensional lists

These are lists that have rows and columns, i.e. they are two dimensions

The actual program

The program written in Python, where comments are used to explain each line is as follows:

#This defines the list

mult_table = [[1, 2, 3],[2, 4, 6],[3, 6, 9]]

#This iterates through the rows in the list

for row in mult_table:

   #This prints the elements by row

   print(" ".join([str(cell) for cell in row]))

Read more about lists at:

https://brainly.com/question/16397886