python更新列表的方法


Posted in Python onJuly 28, 2015

本文实例讲述了python更新列表的方法。分享给大家供大家参考。具体如下:

aList = [123, 'abc', 4.56, ['inner', 'list'], (7-9j)]
print aList[2]
aList[2] = 'float replacer'
print aList
aList.append("hi, i'm new here")
print aList

运行结果如下:

4.56
[123, 'abc', 'float replacer', ['inner', 'list'], (7-9j)]
[123, 'abc', 'float replacer', ['inner', 'list'], (7-9j), "hi, i'm new here"]

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
python dict remove数组删除(del,pop)
Mar 24 Python
python中 ? : 三元表达式的使用介绍
Oct 09 Python
python修改操作系统时间的方法
May 18 Python
python中函数总结之装饰器闭包详解
Jun 12 Python
django限制匿名用户访问及重定向的方法实例
Feb 07 Python
python清除字符串中间空格的实例讲解
May 11 Python
Python 中字符串拼接的多种方法
Jul 30 Python
在Python中pandas.DataFrame重置索引名称的实例
Nov 06 Python
python tkinter图形界面代码统计工具(更新)
Sep 18 Python
python3 常见解密加密算法实例分析【base64、MD5等】
Dec 19 Python
Python如何在windows环境安装pip及rarfile
Jun 15 Python
Django中如何用xlwt生成表格的方法步骤
Jan 31 Python
python实现给数组按片赋值的方法
Jul 28 #Python
python通过加号运算符操作列表的方法
Jul 28 #Python
python比较两个列表是否相等的方法
Jul 28 #Python
python追加元素到列表的方法
Jul 28 #Python
python数组过滤实现方法
Jul 27 #Python
Python实现删除当前目录下除当前脚本以外的文件和文件夹实例
Jul 27 #Python
Python多线程结合队列下载百度音乐的方法
Jul 27 #Python
You might like
php框架Phpbean说明
2008/01/10 PHP
zf框架的db类select查询器join链表使用示例(zend框架)
2014/03/14 PHP
PHP内置过滤器FILTER使用实例
2014/06/25 PHP
LaravelS通过Swoole加速Laravel/Lumen详解
2018/03/02 PHP
Prototype使用指南之form.js
2007/01/10 Javascript
索趣科技的答案
2007/02/07 Javascript
JS创建优美的页面滑动块效果 - Glider.js
2007/09/27 Javascript
javascript单引号和双引号的区别和处理
2014/05/14 Javascript
鼠标悬浮显示二级菜单效果的jquery实现
2014/10/29 Javascript
javascript实现的网站访问量统计代码
2015/12/20 Javascript
js实现无缝滚动特效
2015/12/20 Javascript
vue中如何让子组件修改父组件数据
2018/06/14 Javascript
微信小程序如何获取手机验证码
2018/11/04 Javascript
Elasticsearch实现复合查询高亮结果功能
2019/09/10 Javascript
Vue 利用指令实现禁止反复发送请求的两种方法
2019/09/15 Javascript
5种Python单例模式的实现方式
2016/01/14 Python
简单掌握Python的Collections模块中counter结构的用法
2016/07/07 Python
python enumerate函数的使用方法总结
2017/11/15 Python
pandas 实现将重复表格去重,并重新转换为表格的方法
2018/04/18 Python
python接口自动化(十七)--Json 数据处理---一次爬坑记(详解)
2019/04/18 Python
python+opencv实现车牌定位功能(实例代码)
2019/12/24 Python
Pandas读取csv时如何设置列名
2020/06/02 Python
matplotlib事件处理基础(事件绑定、事件属性)
2021/02/03 Python
使用HTML5技术开发一个属于自己的超酷颜色选择器
2013/09/22 HTML / CSS
Html5页面获取微信公众号的openid的方法
2020/05/12 HTML / CSS
宏碁西班牙官网:Acer西班牙
2021/01/08 全球购物
为什么会有内存对齐
2016/10/10 面试题
分别介绍一下Session Bean和Entity Bean
2015/03/13 面试题
职工趣味运动会方案
2014/02/10 职场文书
令人印象深刻的自荐信
2014/05/25 职场文书
2015年国庆节活动总结
2015/03/23 职场文书
宝宝满月宴答谢词
2015/09/30 职场文书
python中sqllite插入numpy数组到数据库的实现方法
2021/06/21 Python
低版本Druid连接池+MySQL驱动8.0导致线程阻塞、性能受限
2021/07/01 MySQL
用php如何解决大文件分片上传问题
2021/07/07 PHP
Golang原生rpc(rpc服务端源码解读)
2022/04/07 Golang