我写了这样的东西:
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')
python numpy python-3.x
numpy ×1
python ×1
python-3.x ×1