Write Python program to demonstrate printing of complete multidimensional list row by row.
Topic: Write Python program to demonstrate printing of complete multidimensional list row by row.
Solution
a = [[2, 4, 6, 8, 10], [3, 6, 9, 12, 15], [4, 8, 12, 16, 20]] for record in a: print(record)
List all Python Programs