Accessing elements of a matrix

Report a typo

Let's say we have a matrix M:

M = [[34, 77, 8,  45],
     [10, 15, 93, 57],
     [78, 82, 19, 98]]

Write a code that will print the element in the first column and the third row. Mind that the size and the number of elements in the test matrix will be the same, but the integers in it will be different.

Write a program in Python 3
# the variable M is already defined
___

Create a free account to access the full topic