Using the matrix below as an input I want to count even numbers and odd numbers in matrix Matrix:
1 4 7 5 8
8 5 9 11 9
To do this I write the matrix value in python, and is two loops is the correct way to solve this
numbers= [[1,4,7,5,8],[8,5,9,11,9]]