我使用pandasnumpy处理一些数据,直到获得两个类似的数组输出:

array(['french', 'mexican', 'cajun_creole', ..., 'southern_us', 'italian',
       'thai'], dtype='<U12')

array(['french', 'mexican', 'cajun_creole', ..., 'jamaican', 'italian',
   'thai'], dtype=object)

我看不出有什么区别,<U12是什么?

最佳答案

<U12这是一个numpy类型:
<小端
U Unicode
12 12个字符:

(Source)

关于python - 什么是<U12类型?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52397513/

10-10 17:48