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