I have this Matrix=[['1', '2', '3'], ['4', 'a', 'n']]
Im doing this:
Matrix=[arr.split() for arr in Matrix]
Matrix=[list(map(int, arr)) for arr in Matrix]
as you can see I have 'a' and 'n' there, I want to stop the process and raise a flag like con=false everytime I got a char inside the Matrix, how do I do that?