萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> python使用append合並兩個數組的方法

python使用append合並兩個數組的方法

   這篇文章主要介紹了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程序設計有所幫助。

copyright © 萬盛學電腦網 all rights reserved