标签: python python-3.x numpy
我这样写:
import numpy as np n=['28/08/201818:20:35PM'] n=np.array(n) n
这给了我输出array(['28/08/201818:20:35PM'], dtype='<U20') 我没有在输出中得到dtype。 是“ UNICODE”,但是“ <”和“ 20”
array(['28/08/201818:20:35PM'], dtype='<U20')
答案 0 :(得分:-1)
在小端格式(20)上的20个字符(U)Unicode字符串(<)。 docs
20
U
<