這篇文章主要介紹了python使用append合并兩個數(shù)組的方法,涉及Python中append方法的使用技巧,需要的朋友可以參考下
本文實(shí)例講述了python使用append合并兩個數(shù)組的方法。分享給大家供大家參考。具體如下:
lista = [1,2,3]
listb = [4,5,6]
mergedlist =[]
for elem in lista:
mergedlist.append(elem)
for elem in listb:
mergedlist.append(elem)
希望本文所述對大家的Python程序設(shè)計有所幫助。
更多信息請查看IT技術(shù)專欄