i wrote something like this:
import numpy as np
n=['28/08/201818:20:35PM']
n=np.array(n)
n
the gives me the output array(['28/08/201818:20:35PM'], dtype='<U20')
i don't get the dtype in the output.
is it the 'UNICODE' but what about '<' & '20'
i wrote something like this:
import numpy as np
n=['28/08/201818:20:35PM']
n=np.array(n)
n
the gives me the output array(['28/08/201818:20:35PM'], dtype='<U20')
i don't get the dtype in the output.
is it the 'UNICODE' but what about '<' & '20'