> lst =[1,2,3]*[2,3,4]# 错误的示范及报错内容>'''
> File "<stdin>", line 1, in <module>
> TypeError: can't multiply sequence by non-int of type 'list'
> '''> lst =[1,2,3]*2>[1,2,3,1,2,3]
in —— 用来检查指定元素是否存在于列表中,如果在返回True,如果不在返回False
> a =[1,2,3]>4in a
>False>3in a
>True
not in —— 用来检查指定元素是否存在于列表中,如果不在返回True,如果在返回False
> a =[1,2,3]>4notin a
>True>3notin a
>False
len(list)函数 —— 列表长度
> a =[1,2,3]>len(a)>3
min(list)函数 —— 列表内最小值
> a =[1,2,3]>min(a)>1
max(list)函数 —— 列表内最大值
> a =[1,2,3]>max(a)>3
list.index(x[,start[,end]])方法 —— 获取x在列表中首次出现的位置
> a =[1,2,3,4,5,6,1,2,3,4,5,6]>list.index(3)>2>list.index(3,3)# 结束位置不写为起始位置到最后一个元素>8>list.index(3,3,8)# 如果未找到则报错:值错误'''
File "<stdin>", line 1, in <module>
ValueError: 3 is not in list
'''