1、列表相加
新列表是通过添加列表来生成的。
color1=['green','blue','pink','red'] color2=['black','white'] color=color1+color2 print(color) ['green','blue','pink','red','black','white']
2、列表相乘
原列表中的元素将在新列表中重复n次。
color2=['black','white'] color3=color2*2 print(color3) ['black','white','black','white']
3、确定列表长度 len()
len() 用于返回列表中包含元素的数量的函数。
color1=['green','blue','pink','red','black','white'] print(len(color1)
4、获取列表元素值 max()
num=[22,1,56,400,888,520] print(max(num)) 1 2 888 1
5、获取列表元素的最小值 min()
num=[22,1,56,400,8888,520] print(min(num))