08_python的列表、元祖、字符串、字典及公共方法
2020-12-13 15:14
标签:方法 变量 逆序 元素 参数 指定位置 copy 函数 概述 实际开发中,删除列表中元素建议使用列表方法而不使用关键字 python中使用for循环进行列表迭代遍历 通过列表的迭代遍历,可以对列表元素执行统一的操作。 08_python的列表、元祖、字符串、字典及公共方法 标签:方法 变量 逆序 元素 参数 指定位置 copy 函数 概述 原文地址:https://www.cnblogs.com/lasnitch/p/11576716.html1.python的列表
(1)列表概述
[]
定义,列表元素之间使用,
分隔
定义列表的基本语法:
student_number_list=["p18301200","p18301201"]
(2)列表的常用操作
student_number_list.append() # 参数:数据。 功能:在列表末尾追加数据或追加一个列表。
student_number_list.count() # 参数:数据。 功能:计算该数据在列表中出现的次数。
student_number_list.insert() # 参数:索引,数据。 功能:在列表指定位置插入数据。
student_number_list.reverse() # 参数:无 功能:逆序、反转。
student_number_list.clear() # 参数:无 功能:清除列表。
student_number_list.extend() # 参数:列表 功能:在列表末尾追加列表。
student_number_list.pop() # 参数:无 或索引 功能:删除末尾数据。删除指定位置数据。
student_number_list.sort() # 参数:reverse=true 功能:升序排列。
student_number_list.copy() # 参数:无 功能:
student_number_list.index() # 参数:无 功能:
student_number_list.remove() # 参数:数据 功能:删除第一个出现的指定数据
student_number_list[索引]=数据 # 功能:修改指定位置的数据
del student_number_list[索引] # 功能:删除指定位置的数据
len(列表) # 功能:返回列表的长度
del
是python的关键字,它能够删除列表中的元素,它的本质是将一个变量从内存中删除,删除后其后的代码不可再次使用该变量。del
。(3)列表的遍历
for student_number in student_number_list:
print(student_number)
(4)列表的应用场景
2.python的元祖
(1)元祖概述
(2)元祖的常用操作
(3)元祖的遍历
(4)元祖的应用场景
3.python的字典
(1)字典概述
(2)字典的常用操作
(3)字典的遍历
(4)字典的应用场景
4.python的字符串
(1)字符串概述
(2)字符串的常用操作
(3)字符串的遍历
(4)字符串的应用场景
5.python的内置函数