I'm having trouble converting a numpy array of type bytes8 into a string. I guess I need to decode the data but I'm not sure how to do this for a numpy array. The array is of size [1200,8] but the data is repeated along the largest dimension so I only really need to convert one row to a string.
The first entry of the array gives the following output on the command line: array([b'5', b'5', b'5', b'7', b'0', b' ', b' ', b' '], dtype='|S1')
I have tried things like .tostring() but with no luck. The issue seems to be that the object is a numpy array.