arr = [
"xxyyyxxxx",
"xxxeeexxx",
"xwwwxxxxx",
]
I've seen code similar to this used to simulate 2 dimensional arrays in python by parsing the contents using for in row and for in col. Using this method what would be the easiest way to identify a specific "index" (or rather the location of a character within a certain string). If you don't have to modify the array and having to type out the entire array isn't an issue would there still be a better way to simulate a 2 dimensional array?