手机
当前位置:查字典教程网 >脚本专栏 >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更新列表的方法】相关文章:

tornado捕获和处理404错误的方法

python和shell变量互相传递的几种方法

python正则分组的应用

pydev使用wxpython找不到路径的解决方法

python列表去重的二种方法

python解析中国天气网的天气数据

python备份文件的脚本

python正则表达式re模块详解

python 控制语句

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

精品推荐
分类导航