Supposing you had an array (in the latest version of Python):
list = [
['1', '2', '3'], ['4', '5', '6'], ['7', '8', ' ']
]
How do you find the index of the value that has the empty (' ') space?
Like list.index(' ') would return [2][2] or smthn.
I think for a 1D list it was string.index() but I was wondering what it was for a 2d List