手机
当前位置:查字典教程网 >脚本专栏 >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 字符串split的用法分享

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

Python列表推导式的使用方法

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

python正则表达式re模块详解

python读取注册表中值的方法

c++生成dll使用python调用dll的方法

python解析html开发库pyquery使用方法

python实现哈希表

python赋值操作方法分享

精品推荐
分类导航