I got an numpy array, for example:
myArray = np.array(['a','bc'])
Is it possible use dtype to find out, whether its elements are strings?
The only way I can do is checking myArray.dtype == 'S2', but my Problem is I don't know in advance how many character are there in my elements.
Can I use something like myArray.dtype == 'str'?