码迷,mamicode.com
首页 > 编程语言 > 详细

python列表之添加、修改和删除元素

时间:2019-08-24 22:38:30      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:位置   定位   move   span   其他   元素   nbsp   english   rem   

修改列表中的元素:

1 subject= [math, Chinese, English] 
2 subject[0] = history 
3 # 列表名[要修改元素的下标]=修改后的元素
4 print(subject)

output: [‘history‘,‘Chinese‘,‘English‘]

列表中添加元素:

在末尾添加:

1 subject=[math,English]
2 print(subject)
3 subject.append(Chinese)
4 # 在列表末尾添加元素
5 print(subject)

output:[‘math‘,‘English‘]

           [‘math‘,‘English‘,‘Chinese‘]

插入元素:

1 subject=[math,English,Chinese]
2 print(subject)
3 subject.insert(1,history)
4 # 在指定位置插入元素,其他元素后移
5 print(subject)

output:[‘math‘,‘English‘,‘Chinese‘]

           [‘math‘,‘history‘,‘English‘,‘Chinese‘]

删除列表中的元素:

使用del

 

subject=[math,English,Chinese]
print(subject)
del subject[1]
#删除元素
print(subject)

output:[‘math‘,‘English‘,‘Chinese‘]

           [‘math‘,‘Chinese‘]

使用pop

subject=[math,English,Chinese]
print(subject)
subject.pop()
#删除列表末尾的元素
print(subject)

output:[‘math‘,‘English‘,‘Chinese‘]

           [‘math‘,‘English‘]

使用pop也可以删除任意位置的元素,只需要在括号里添加个数字,即元素的下标

subject=[math,English,Chinese]
print(subject)
subject.pop(1)
#删除任意位置的元素
print(subject)

output:[‘math‘,‘English‘,‘Chinese‘]

           [‘math‘,‘Chinese‘]

pop与del相比,还有个返回值,值为删除的元素

subject=[math,English,Chinese]
value=subject.pop(1)
#删除任意位置的元素
print(value)

output:‘English‘

根据值删除元素

subject=[math,English,Chinese]

subject.remove(math)
#根据值删除元素

注意:remove只会删除指定的第一个值,如果要删除的值可能在列表中出现多次,就得使用循环判断是否删除了所有这样的值

 

 

   

 

 

python列表之添加、修改和删除元素

标签:位置   定位   move   span   其他   元素   nbsp   english   rem   

原文地址:https://www.cnblogs.com/MindBin/p/11406289.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!