I am inexperienced at this level of Python but need to complete it for a team project.
I currently have 28 arrays consisting of 28 data points inside each array which will look similar to this but way longer:
grid =[["c","c","c","c","c","c","o","o","-","-","o","-","-","o","-","o","o","-","o","o","o","-","-","-","o","o","o","o"]]
My goal is to get this into a grid-looking format and then use each data point like an (x,y) coordinate system so I can move an object through them using vector equations. Basically simulating the motion I want a robot to follow.
Grid visual example:
[ . . . . . . . . . . .]
[ . . . . . . . . . . . ]
continues...
Any guidance will be much appreciated, please!
I welcome results in Python and C++.
Thank you!