首页 > 代码库 > 【Python】列表各种操作
【Python】列表各种操作
# -*- coding:utf-8 -*-
#列表操作
name_list = [‘zhangsan‘,‘lisi‘,‘wangwu‘]
#append 在最后插入
name_list.append("zhaoliu")
print(name_list)
#count 计算指定元素的数量
c = name_list.count("zhangsan")
print(c)
#extend 列表拼接,在最后插入(将字符串拆分)
name_list.extend("lisi")
print(name_list)
#index 显示列表中元素的索引值
i = name_list.index("wangwu")
print(i)
#insert 在指定索引位置插入
name_list.insert(2,"haha")
print(name_list)
#pop 删除最后一个元素
name_list.pop()
print(name_list)
#remove 删除指定元素
name_list.remove("l")
print(name_list)
#reverse 反转所有元素
name_list.reverse()
print(name_list)
#sort 排序
name_list.sort()
print(name_list)
【Python】列表各种操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。