Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
def print_matrix(a_matrix): for rows in a_matrix: for col in rows: print(col, end=" ") print() matrix = [[11, 42, 53], [78, 50, 989]] print_matrix(matrix) ''' run: 11 42 53 78 50 989 '''