Array is acting weirdly, I have this code:
a=np.array(['dfdfdfdf', 'gulf', 'egypt', 'hijazi a', 'gulf', 'egypt'])
And I did this:
a[0]="hello there my friend"
Result was:
array(['hello th', 'gulf', 'egypt', 'hijazi a', 'gulf', 'egypt'],
dtype='<U8')
What exactly is going on?