一.列表 作用:多个装备,多个爱好,多门课程,多个女朋友等 定义:[]内可以有多个任意类型的值,逗号分隔 以下是列表的常用操作方法: append(), count(), insert(),reverse(),clear(),extend(),pop(),sort(),copy(),index(),remove(),function(object) l=[1,2,3] #l=list([1,2,3]) # print(type(l)) <class 'list'> # 切片 l=[1,2,3,…