博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python List 用法
阅读量:5798 次
发布时间:2019-06-18

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

hot3.png

列表:非常的灵活,可以存储任意的数据类型,还支持append()方法,问题是浪费大量的空间

数组: 假设你知道 array 中所有的数据类型都是一样的话,那么你就可以在空间上节省一大半。

list 各种用法:

list.append('d'#will add 'd' to the list

list[0#will get the first item 'a'
list.insert(i, x) 
# Insert an item at a given position. The first argument is the index of the element before which to insert, so a.insert(0, x) inserts at the front of the list, and a.insert(len(a), x) is equivalent to a.append(x).    
list.pop(
2# will remove items by postion, remove the 2nd item
list.remove(x) 
# Remove the first item from the list whose value is x.
list.index(x) 
# Return the index in the list of the first item whose value is x. It is an error if there is no such item.
list.count(x) 
# Return the number of times x appears in the list.
list.sort(cmp=
None, key=None, reverse=False# Sort the items of the list in place (the arguments can be used for sort customization, see sorted() for their explanation).
list.reverse() 
# Reverse the elements of the list, in place.

转载于:https://my.oschina.net/pythonnnn/blog/660710

你可能感兴趣的文章
shell编程笔记六:实现ll命令
查看>>
【SAP HANA】关于SAP HANA中带层次结构的计算视图Cacultation View创建、激活状况下在系统中生成对象的研究...
查看>>
[nodejs] nodejs开发个人博客(五)分配数据
查看>>
《Linux内核修炼之道》 之 高效学习Linux内核
查看>>
Java数据持久层框架 MyBatis之API学习九(SQL语句构建器详解)
查看>>
30分钟Git命令“从入门到放弃”
查看>>
nginx : TCP代理和负载均衡的stream模块
查看>>
MYSQL数据库间同步数据
查看>>
DevOps 前世今生 | mPaaS 线上直播 CodeHub #1 回顾
查看>>
iOS 解决UITabelView刷新闪动
查看>>
行为型模式:观察者模式
查看>>
让前端小姐姐愉快地开发表单
查看>>
Dubbo笔记(四)
查看>>
Web前端JQuery入门实战案例
查看>>
Android开发教程 - 使用Data Binding(一) 介绍
查看>>
java B2B2C Springboot电子商城系统- SSO单点登录之OAuth2.0 登出流程(3)
查看>>
12月26日云栖精选夜读:CDN新品发布:阿里云SCDN安全加速开放公测
查看>>
USB 通信原理
查看>>
7zZip zip RAR iOS
查看>>
ssh无密码登陆远程主机
查看>>