python列表方法总结_Python列表总结 - Archimede

Python包含6种内建序列: 列表、元组、字符串、Unicode字符串、buffer对象、xrange对象

本篇主要讨论最常用的两种类型:列表和元组

列表和元组的主要区别在于,列表可以修改,元组则不能。一般情况下,在几乎所有的情况下列表都可以代替元组

例如:使用序列可以表示数据库中一个人的信息(姓名,年龄)

>>> edward=['Edward Gumby',42]

序列还可以包含其他序列

>>> edward=['Edward Gumby',42]>>> john=['John Smith',50]>>> database=[edward,john]>>>database

[['Edward Gumby', 42], ['John Smith', 50]]

通用序列操作

所有的序列操作都可以进行某些特定的操作。这些操作包括:索引、分片、加、乘以及检查某个元素是否属于序列的成员

索引

序列中的所有元素都是有编号的--从0开始递增。这些元素可以通过编号分别访问,如下:

>>> greeting='hello'

>>>greeting[0]'h'

>>> greeting[-1]'o'

>>> 'hello'[1]'e'

如果一个函数调用返回一个序列,那么可以直接对返回结果进行索引操作,例如:

>>> fourth=raw_input('Year:')[3]

Year:2005

>>>fourth'5'

http___img0.tuicool.com_7JJJry.gif

#根据给定的年月日以数字形式打印出日期

months=['January','February','March','April','May','June','July','August','September','October','November','December']#以1~31的数字作为结尾的列表

endings=['st','nd','rd']+17*['th']\+['st','nd','rd']+7*['th']\+['st']

year=raw_input('Year:')

month=raw_input('Month(1-12):')

day=raw_input('Day(1-31):')

month_number=int(month)

day_number=int(day)#记得要将月份和天数减1,以获得正确的索引

month_name=months[month_number-1]

ordinal=day+endings[day_number-1]print month_name+' '+ordinal+','+year

View Code

运行结果:

>>>Year:1974Month(1-12): 8Day(1-31): 16August 16th,1974

分片

使用分片操作来访问一定范围内的元素,分片通过冒号相隔的两个索引来实现:

>>> tag='Python web site'

>>> tag[9:30]'http://www.python.org'

>>> tag[32:-4]'Python web site'

第一个索引是需要提取部分的第一个元素的编号,而最后的索引则是分片之后剩下部分的第一个元素的编号

>>> numbers=[1,2,3,4,5,6,7,8,9,10]>>> numbers[3:6]

[4, 5, 6]>>> numbers[0:1]

[1]

1、优雅的捷径

访问最后的三个元素,当然可以进行显示的操作

>>> numbers[7:10]

[8, 9, 10]>>> numbers[-3:-1]

[8, 9]>>> numbers[-3:0]

[]>>> numbers[-3:]

[8, 9, 10]

只有最后一个分片完成任务,这种方法同样适用序列开始的元素:

>>> numbers[:3]

[1, 2, 3]

实际上,如果需要复制整个序列,可以将两个索引都置空:

>>>numbers[:]

[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

2、更大的步长

分片还有第三个参数--步长,通常都是隐式设置的,在一般情况下,步长是1,不能为0,但是可以为负数,即从右往左提取元素

http___img1.tuicool.com_7JJJry.gif

>>> numbers=[1,2,3,4,5,6,7,8,9,10]>>> numbers[0:10:1]

[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]>>> numbers[0:10:2]

[1, 3, 5, 7, 9]>>> numbers[3:6:3]

[4]>>> numbers[::4]

[1, 5, 9]>>> numbers[8:3:-1]

[9, 8, 7, 6, 5]>>> numbers[10:0:-2]

[10, 8, 6, 4, 2]>>> numbers[0:10:-2]

[]>>> numbers[::-2]

[10, 8, 6, 4, 2]>>> numbers[5::-2]

[6, 4, 2]>>> numbers[:5:-2]

[10, 8]

测试代码

序列相加

通过使用加号可以进行序列的连接操作:

>>> [1,2,3]+[4,5,6]

[1, 2, 3, 4, 5, 6]>>> 'hello.'+'world!'

'hello.world!'

>>> [1,2,3]+'world!'Traceback (most recent call last):

File "", line 1, in

[1,2,3]+'world!'

TypeError: can only concatenate list (not "str") to list

乘法

用数字x乘以一个序列会生成新的序列,而在新的序列中,原来的序列将被重复x次

>>> 'python'*5

'pythonpythonpythonpythonpython'

>>> [42]*10[42, 42, 42, 42, 42, 42, 42, 42, 42, 42]

成员资格

为了检查一个值是否在序列中,可以使用in运算符,该运算符返回布尔值

>>> permissions='rw'

>>> 'w'inpermissions

True>>> 'x'inpermissions

False

Enter your name: mlh

True>>> subject='$$$ Get rich now!!! $$$'

>>> '$$$'insubject

True

长度、最小值和最大值

内建函数len、min、max,len函数返回序列中所包含元素的数量,min和max函数分别返回序列中最大和最小的元素

>>> numbers=[100,34,678]>>>len(numbers)3

>>>max(numbers)678

>>>min(numbers)34

>>> max(2,3)3

>>> min(9,3,2,5)2

list函数

list函数可以根据字符串创建列表

>>> list('hello')

['h', 'e', 'l', 'l', 'o']

基本列表操作:

1、改变列表:元素赋值

使用索引标记来为某个特定的、位置明确的元素赋值:

>>> x=[1,1,1]>>> x[1]=2

>>>x

[1, 2, 1]

2、删除元素

使用del语句来实现:

>>> names=['Alice','Beth','Ceil','Dee-Dee','Earl']>>> del names[2]>>>names

['Alice', 'Beth', 'Dee-Dee', 'Earl']

注意:Cecil是彻底删除,列表长度也从5变为4

3、分片赋值

http___img2.tuicool.com_7JJJry.gif

>>>names

['p', 'e', 'r', 'l']>>> names[2:]

['r', 'l']>>> name=list('perl')>>>name

['p', 'e', 'r', 'l']>>> name[2:]=list('ar')>>>name

['p', 'e', 'a', 'r']>>> name[1:]=list('ython')>>>name

['p', 'y', 't', 'h', 'o', 'n']>>> numbers=[1,5]>>> numbers[1:1]=[2,3,4]>>>numbers

[1, 2, 3, 4, 5]>>> numbers[1:4]=[]>>>numbers

[1, 5]

View Code

列表方法:

方法是一个与某些对象有紧密联系的函数,对象可能是列表、数字,也可能是字符串或者其他类型的对象,方法的调用方式: 对象.方法(参数)

1、append

append方法用于在列表末尾追加新的对象:

>>> lst=[1,2,3]>>> lst.append(4)>>>lst

[1, 2, 3, 4]

2、cout

count方法用于统计某个元素在列表中出现的次数:

>>> ['to','be','or','not','to','be'].count('to')2

>>> x=[[1,2],1,1,[2,1,[1,2]]]>>> x.count(1)2

>>> x.count([1,2])1

3、extend

extend方法可以在列表的末尾一次性的追加另一个序列中的多个值

>>> a=[1,2,3]>>> b=[4,5,6]>>>a.extend(b)>>>a

[1, 2, 3, 4, 5, 6]>>> #区别连接操作

>>> a=[1,2,3]>>> b=[4,5,6]>>> a+b

[1, 2, 3, 4, 5, 6]>>>a

[1, 2, 3]

4、index

index方法用于从列表中找出某一个匹配项的索引位置:

>>> knights=['we','are','the','knigths','who','say','ni']>>> knights.index('who')4

>>> knights=['we','are','the','knigths','who','say','ni']>>> knights.index('herring')

Traceback (most recent call last):

File"", line 1, in

knights.index('herring')

ValueError: 'herring' is not in list

没有成功找到会引发异常

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值