标签:方法 变量 逆序 元素 参数 指定位置 copy 函数 概述
[]
定义,列表元素之间使用,
分隔student_number_list=["p18301200","p18301201"]
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
。
for student_number in student_number_list:
print(student_number)
python中使用for循环进行列表迭代遍历
通过列表的迭代遍历,可以对列表元素执行统一的操作。
标签:方法 变量 逆序 元素 参数 指定位置 copy 函数 概述
原文地址:https://www.cnblogs.com/lasnitch/p/11576716.html