标签:pytho als com lis mamicode color info python 最大
+ 列表拼接
first_list = [1,2,3] + [‘a‘,5] # + 将列表拼接 print(first_list) # [1, 2, 3, ‘a‘, 5]
* 列表与数字n相乘 : n个列表拼接
two_list = [1,2,3] * 5 # * 将5个[1,2,3]列表拼接 print(two_list) # [1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3]
in 和 not in
in用来检查指定元素是否存在于列表中
如果存在,返回True,否则返回False
not in用来检查指定元素是否不在列表中
如果不在,返回True,否则返回False
three_list = [‘王昭君‘,‘妲己‘,‘虞姬‘,‘庄周‘,‘后羿‘] one_para = ‘佛祖‘ in three_list print(one_para) # False if(‘王昭君‘ in three_list): print(‘王昭君在英雄榜上!‘) if(‘佛祖‘ not in three_list): print(‘佛祖不在在英雄榜上!‘)
len() 获取列表中的元素的个数 (获取列表的长度)
list = [‘a‘,‘b‘,‘c‘,‘d‘,‘e‘] list_length = len(list) # len()返回列表的长度 print(list_length)
max() : 获取表中最大值
min() : 获取表中最小值
arr = [10,1,2,5,100,77] print(max(arr)) print(min(arr))
python列表的 + 、* 、in 、 not in 、 len() 、 max() 、 min()
标签:pytho als com lis mamicode color info python 最大
原文地址:https://www.cnblogs.com/FlyingLiao/p/11167456.html