The chapter is nested lists Create code in python using for loops Thanks! Print the two-dimensional list mult_table by row and column. Hint: Use nested loops. Sample output with input: '1 2 3,2 4...

The chapter is nested lists


Create code in python using for loops


Thanks!



Print the two-dimensional list mult_table by row and column. Hint: Use nested loops.

Sample output with input: '1 2 3,2 4 6,3 6 9':

1 | 2 | 3

2| 4 | 6

3 |6 | 9




1 user_input= input()

2 lines =user_input.split(',')

3

4 # This line uses a construct called a list comprehension, introduced elsewhere,

5 # to convert the input string into a two-dimensional list.

6 # Ex: 1 2, 2 4 is converted to [ [1, 2], [2, 4] ]

8 mult_table=[[int(num) for num in line.split()] for line in lines]


9

10

11

12




May 18, 2022
SOLUTION.PDF

Get Answer To This Question

Submit New Assignment

Copy and Paste Your Assignment Here