我知道还有其他类似extend的方法,但我想知道是否有可能:
lt = ['p','y','t','h','o','n']
使用切片后
['p','y','t','h','o','n','g','o']
我的列表总是在增长,出于特定原因,我需要使用slice。
答案 0 :(得分:0)
考虑将numpy
与np.r_
(read the docs)一起使用
import numpy as np
arr1 = np.array(['p','y','t','h','o','n'])
arr2 = np.array(['g','o'])
combined_arr = np.r_[arr1, arr2]
>>> array(['p','y','t','h','o','n','g','o'])