如何按空间拆分数组?

时间:2019-03-27 17:40:56

标签: python numpy

我有一个大小为1的数组,我想将其拆分为多个单词。

import numpy as np

array = np.array(["this array needs splitting"])

print(array)
  

['此数组需要拆分']

所需的输出:

  

['this','array','needs','splitting']

1 个答案:

答案 0 :(得分:-1)

对要拆分的字符串使用split()函数,并在需要时将其设置回数组中。 https://www.w3schools.com/python/ref_string_split.asp