chaînes de concaténage de Numpy Array Python

a=np.array(['ab','cd','ef','gh'])
''.join(a)

#Output: 'abcdefgh'
Dead Dotterel