python(三)列表和元组
列表
a=[1,"xiaoming",'a',[2,'b']]
print(a[0])#通过下标访问
#循环遍历
nameList=['xiaoming','xiaofang','haohao','dandan']
#for in
for name in nameList:
print(name)
#while遍历
length=len(nameList)
i=0
while i<length:
print(naeList[i])
i+=1
增加:
list.append(x)
list1.extend(list2)
list.insert(index)
删除:
list,pop()
list,pop(index)
list.remove(x)
del list[0]
排序:
list.sort()
list,reverse()
元组(不能修改)
tuple=("hello",100,4.5)
print(tuple[0])
内置函数:
len(tuple)
max(tuple)
min(tuple)
tuple(seq):列表转为元组
注意:一个只有一个元素的元组要写成 tupple=(1, )