一.列表函数

1.sort()原址排序

  • 参数默认reverse=False时为正序排序

    list1 = [1,3,5,2,1,23,18]
    list1.sort()
    print (list1)
  • 当参数reverse=True时为倒序排序
    list1 = [1,3,5,2,1,23,18]
    list1.sort(reverse=True)
    print (list1)

2.reverse()反向列表

list1 = [1,3,5,2,1,23,18]
list1.reverse()
print (list1)

3.count()统计元素出现的次数

num1 = ["a","b","c","d","b","d"]
x = num1.count("a")
y = num1.count("b")
z = num1.count("c")
print ("a有%d个,b有%d个,c有%d个。"%(x,y,z))

strs = "dadaskndaskndksa"
print (strs.count("n"))
#coding=utf-8

English = ["]

x = English.count(")
y = English.count(")
z = English.count(")

print ("90分共%d人,95分共%d人,98分共%d人"%(x,y,z))

4.pop()用于移除列表中的一个元素(默认最后一个元素),并且返回该元素的值

num1 = [1,2,3,4,5,6]
a = num1.pop()
print (a)
print (num1)
b = num1.pop()
print (a + b)

#通过索引值指定删除某个值
c = num1.pop(2)
print (c)

5.remove()移除列表中某个值的第一个匹配项

  • remove 删除是通过列表中元素值进行删除
  • remove 删除后没有返回值
list1 = ['zhangsan','lisi','wangwu','zhaoli','sunqi','lisi']
#移除第一个 lisi
list1.remove('lisi')
print (list1)

6.del  删除表中元素

  • 通过索引值删除
list1 = ['zhangsan','lisi','wangwu','zhaoli','sunqi','lisi']
del list1[1]
print (list1)

7.insert(index,x) 将指定对象插入列表的指定位置

  • insert 可以通过索引将值添加到任意位置,
  • 既可以往列表中添加单个元素也可以往列表中添加一个序列(但是添加序列后结果是一个多维列表)
list1 = [1,2,3,4,9,5,34]
#列表 list1 索引号为 4 的位置插入元素 7
list1.insert(4,7)
print (list1)

#列表 list1 索引号为 0 的位置插入序列list2
list2 = [7,8]
list1.insert(0,list2)
print (list1)

8.append()用于在列表末尾添加新的对象

  • 既可以往列表末尾添加单个元素也可以往列表末尾添加一个序列
list1 = [1,2,3,4,9,5,34]
#往列表 list1 中添加元素 11
list1.append(11)
print (list1)

#往列表 list1 中添加序列
list1.append([1,4,6])
print (list1)

list1.append((1,4,6))
print (list1)

list1.append('代码')
#会乱码
print (list1)
#转码
print (str(list1).decode('string_escape'))

9.extend()用于在列表末尾一次性追加另一个序列中的多个值(用新列表扩展原来的列表)

list1 = ['zhangsan','lisi']
list2 = ['wangwu','zhaoli','sunqi']
#合并两个列表
list1.extend(list2)
print (list1)

10.set()去重

list1 = [1,3,4,6,1,3,5,1]
list2 = set(list1)
print (list2)
print (type(list2))
print (list(list2))

python(列表函数)的更多相关文章

  1. Python列表函数和方法

    Python列表函数和方法: 函数: len(列表名): 返回列表长度 # len(列表名): # 返回列表长度 lst = [1,2,3,'a','b','c'] print("lst 列 ...

  2. Python列表函数&方法

    Python包含以下函数: 序号 函数 1 cmp(list1, list2)比较两个列表的元素 2 len(list)列表元素个数 3 max(list)返回列表元素最大值 4 min(list)返 ...

  3. python 列表函数

    list函数: 功能:将字符创转化为列表,例: 列表基本函数: 1.元素赋值,例: 注意:通过list[0]= 'hel',如果原来位置上有值,会覆盖掉原来的. 2.分片操作 1)显示序列,例: 注意 ...

  4. python 列表函数(转)

    list函数: 功能:将字符创转化为列表,例: 列表基本函数: 1.元素赋值,例: 注意:通过list[0]= 'hel',如果原来位置上有值,会覆盖掉原来的. 2.分片操作 1)显示序列,例: 注意 ...

  5. Python 列表(List)包含的函数与方法

    Python列表函数&方法 Python包含以下函数: 序号 函数 1 cmp(list1, list2)比较两个列表的元素 2 len(list)列表元素个数 3 max(list)返回列表 ...

  6. Python 列表(List)

    Python 列表(List) 序列是Python中最基本的数据结构.序列中的每个元素都分配一个数字 - 它的位置,或索引,第一个索引是0,第二个索引是1,依此类推. Python有6个序列的内置类型 ...

  7. Python 列表(List)-文摘

    原文地址:http://www.runoob.com/python/python-lists.html Python 列表(List) 序列是Python中最基本的数据结构.序列中的每个元素都分配一个 ...

  8. Python 列表(Lists)

    Python 列表(Lists) 序列是Python中最基本的数据结构.序列中的每个元素都分配一个数字 - 它的位置,或索引,第一个索引是0,第二个索引是1,依此类推. Python有6个序列的内置类 ...

  9. 【277】◀▶ Python 列表/元组/字典说明

    目录: 前言 一.访问列表中的值 二.更新列表 三.删除列表元素 四.Python 列表脚本操作符 五.Python 列表函数 & 方法 参考:Python 列表(List)使用说明 列表截取 ...

  10. Python - 列表 - 第八天

    Python 列表 序列是Python中最基本的数据结构.序列中的每个元素都分配一个数字 - 它的位置,或索引,第一个索引是0,第二个索引是1,依此类推. Python有6个序列的内置类型,但最常见的 ...

随机推荐

  1. 必须要注意的 C++ 动态内存资源管理(一)——视资源为对象

    必须要注意的 C++ 动态内存资源管理(一)——视资源为对象 一.前言         所谓资源就是,一旦你用了它,将来必须还给系统.如果不这样,糟糕的事情就会发生.C++ 程序中最常见使用的资源就是 ...

  2. [LeetCode] 151. Reverse Words in a String 翻转字符串中的单词

    Given an input string, reverse the string word by word. For example,Given s = "the sky is blue& ...

  3. Linux安全学习

    安全游戏说明 游戏形式帮助初学者学习和实践网络安全,主要是Linux shell命令的练习. https://overthewire.org/wargames/ 二进制 灰帽黑客进阶秘籍之一--lin ...

  4. php xml转array的方法

    php xml转array的方法 <pre><?php $responseXml='<xml><appid>12</appid></xml& ...

  5. TP5 模型CURD

    ThinkPHP5的模型是一种对象-关系映射(Object / Relation Mapping ,简称 ORM)的封装,并且提供了简洁的ActiveRecord实现.一般来说,每个数据表会和一个“模 ...

  6. [转帖]ARM A77+G77最强公版架构:联发科5G SoC计划11月26日发布

    ARM A77+G77最强公版架构:联发科5G SoC计划11月26日发布 https://www.cnbeta.com/articles/tech/909025.htm 主流的手机SoC厂商已经纷纷 ...

  7. [转帖]【MySQL+keepalived】用keepalived实现MySQL主主模式的高可用

    [MySQL+keepalived]用keepalived实现MySQL主主模式的高可用 https://www.jianshu.com/p/8694d07595bc 一.实验说明 MySQL主主模式 ...

  8. fastjson转换对象时出错,"$ref": "$.data.list[0].xxxx"

    出现$ref: "$.list[2]"的原因是因为循环引用/内存对象重复. $ref”:”..” 上一级“$ref”:”@” 当前对象,也就是自引用“$ref”:”$” 根对象{& ...

  9. 同一个Tomcat部署多个springboot项目问题

    2018-12-13 10:37:21,412 ERROR [localhost-startStop-2] c.a.d.s.DruidDataSourceStatManager [DruidDataS ...

  10. SpringBoot--整合Mybatis+druid

    分为两部分,首先替换默认数据源为阿里德鲁伊并添加监控,其次是SpringBoot下使用Mybatis 替换数据源为德鲁伊 首先在配置文件里配置好数据库连接的基本信息,如username passwor ...