当前位置:   article > 正文

python超神之路:Python3 列表list合并的4种方法

python将3个list合并成一张rgb

Python3 列表list合并的4种方法

方法1: 直接使用"+"号合并列表

  1. aList = [1,2,3]
  2. bList = ['www', 'pythontab.com']
  3. cList = aList + bList
  4. dList = bList + aList
  5. print(cList)
  6. print(dList)
  7. # 结果:
  8. [1, 2, 3, 'www', 'pythontab.com']
  9. ['www', 'pythontab.com', 1, 2, 3]

方法2: 使用extend方法

  1. aList = [1,2,3]
  2. bList = ['www', 'pythontab.com']
  3. aList.extend(bList)
  4. print(aList)
  5. # 结果:
  6. [1, 2, 3, 'www', 'pythontab.com']

方法3: 使用切片

  1. aList = [1,2,3]
  2. bList = ['www', 'pythontab.com']
  3. aList[len(aList):len(aList)] = bList # len
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/931267
推荐阅读
相关标签
  

闽ICP备14008679号