我有一个大小为1的数组,我想将其拆分为多个单词。
import numpy as np
array = np.array(["this array needs splitting"])
print(array)
['此数组需要拆分']
所需的输出:
['this','array','needs','splitting']
答案 0 :(得分:-1)
对要拆分的字符串使用split()函数,并在需要时将其设置回数组中。 https://www.w3schools.com/python/ref_string_split.asp