# 分两列显示元素成员
print("排名\n")
team = ["张三","李四","王二麻子","赵大虎","史珍香"]
#同时输出所以和列表额元素值用enumerate()函数
#for index,item in enumerate(listname):
#然后输出 index和item
for index,item in enumerate(team):
#用enumerate函数同时输出索引和元素内容
if index%2 == 0:
# 除以2余数等于0的情况下为整除,说明是偶数
print(item +"\t\t",end="")
# item是team里面的一个值 + 空格空格 end=表示item之后继续输出不换行
else:
print(item + "\n")
#添加元素
#语法格式listname.append(obj)
team = ["张三","李四","王二麻子","赵大虎","史珍香"]
len(team)
team.append("元芳")
len(team)
print(team)
team2 = ["姬从良","赖月京","史一驼"]
#将一个列表的元素添加到另一个列表中庸extend()函数
#语法 listname.extend(seq) listname为原有列表 seq为新列表
team.extend(team2)
print(team)