fori,arrinenumerate(array):
print(i,arr)
两数组连同打印:
list_1=[1,2,3]
list_2=[4,5,6]
forx,yinzip(list_1,list_2):
print(x,y)
两个变量交换值:
x,y=y,x
print(x,y)
取得字典中的一个数据,如果没有,返回提示值。
city=dic.get(‘datong’,”Unknown’)
print(city)
列表推导
[xforxinrange(10)ifx%2==0]
string.join()常用于连接列表里的字符串
strList=[“Python”,“is”,“good”]
res=‘’.join(strList)
结果:Pythonisgood
三元符的替代
a=3
b=2ifa>2else1
for…else…语句
forxinxrange(1,5):
ifx==5:
print‘find5’
break
else:
print‘cannotfind5!’