手机
当前位置:查字典教程网 >脚本专栏 >python >python更新列表的方法
python更新列表的方法
摘要:本文实例讲述了python更新列表的方法。分享给大家供大家参考。具体如下:aList=[123,'abc',4.56,['inner','l...

本文实例讲述了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写的一个文本编辑器

让python的Cookie.py模块支持冒号做key的方法

Python和php通信乱码问题解决方法

python正则表达式re模块详解

python 控制语句

python读取注册表中值的方法

Python字符遍历的艺术

python列表去重的二种方法

python 排列组合之itertools

python sqlobject(mysql)中文乱码解决方法

精品推荐
分类导航