博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python list extend(扩展) append(添加)
阅读量:5883 次
发布时间:2019-06-19

本文共 277 字,大约阅读时间需要 1 分钟。

hot3.png

list1= ['b','b','c']list1.extend(['d','e','f'])print len(list1)  # 6print list1       #['b','b','c','d','e','f']list2 = ['a','b','c']list2.append(['d','e','f'])print len(list2)  # 4print list2       # ['a','b','c',['d','e','f']]

转载于:https://my.oschina.net/012345678/blog/182298

你可能感兴趣的文章
Maven项目
查看>>
B树 B+树 红黑树
查看>>
How to check in Windows if you are using UEFI
查看>>
【LeetCode】Divide Two Integers
查看>>
IOS使用Jenkins进行持续集成
查看>>
fiddler抓包工具
查看>>
git 修改客户端用户名和密码
查看>>
FileStream读写文件【StreamWriter 和 StreamReader】
查看>>
Github 结合 Hexo 搭建轻量博客
查看>>
vs2017 git凭证问题
查看>>
梦断代码 读后感2
查看>>
nodejs 安装 postgresql module
查看>>
Kth Largest Element in an Array - LeetCode
查看>>
GVIM设置背景颜色
查看>>
存储的瓶颈终篇(8)
查看>>
总部关于数据集成工程师的招聘要求
查看>>
[git]一个本地仓库,多个远程仓库
查看>>
POJO
查看>>
大数据分页实现与性能优化
查看>>
Vue --- :is
查看>>