python列表

python列表


列表是Python中最基本的数据结构。列表中的每个元素都分配一个数字作为它的位置索引,第一个索引是0,第二个索引是1,依此类推。

列表的方法如下:

#先定义三个列表:
list1 = [‘python', ’hello', 100, 2000]
list2 = [1, 7, 3, 4, 5]
list3 = ["a", "b", "c", "d"]
#访问列表
print ("list1[0]: ", list1[0])#python
print ("list2[1:5]: ", list2[1:5])# [7, 3, 4, 5]
for x in [1, 2, 3]: #循环访问
    print x#    1 2 3   迭代
#重复成员*4
['Hi!'] * 4 #['Hi!', 'Hi!', 'Hi!', 'Hi!']
#判断元素是否存在于列表中
3 in [1, 2, 3]  #True   
#比较两个列表的元素
cmp(list1, list2)
#在列表末尾一次性追加另一个序列中的多个值:
[1, 2, 3] + [4, 5, 6]#[1, 2, 3, 4, 5, 6]
list1.extend(list2)
print(list1)#结果:[‘physics’, ‘chemistry’, 1997, 2000, 1, 2, 3, 4, 5]
#从列表中找出某个第一个匹配项的索引位置:
print(list1.index('hello'))#1
#统计某个元素在列表中出现的次数
print(list1.count('hello'))#1
#删除列表中最后一个元素
print(list1.pop())#返回删除的值2000
print(list1)#[‘python’, ‘hello’, 100]
#在列表尾部添加一个元素
list1.append(1000)
print(list1)#[‘python’, ‘hello’, 100, 2000, 1000]
#列表中增加一个元素(在列表的2号位置后增加一个元素)
list1.insert(2,"world")
print(list1)#[‘python’, ‘hello’, ‘world’, 100, 2000]
#对列表进行排序
list2.sort()
print(list2)#[1, 3, 4, 5, 7]
#对列表进行反向排序
list1.reverse()
print(list1)#[2000, 100, ‘hello’, ‘python’]
#删除列表中的某个元素
list2.remove(7)
print(list2)#[1, 3, 4, 5, ]
#拷贝列表
list4 = list1.copy()
print(list4)#[‘python’, ‘hello’, 100, 2000]
#清空列表
list1.clear()
print(list1)#[]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值