python (),[],{}也即tuple,list,set的區別

一、tupleblog

p1 = ('1','2',3)

遍歷方法(索引遍歷或者for in兩種都可):索引

print "p1[1]", p1[1]
for p in p1:
    print p

結果:遍歷

二、list方法

p2 = ['1','2',3]

遍歷方法(索引遍歷或者for in兩種都可):im

print "p2[1]", p2[1]
for p in p2:
    print p

結果:img

三、setco

p3 = {'1','2',3}

遍歷方法(for in):ps

for p in p3:
    print p

結果:index

注:set不支持利用index遍歷的方法

相關文章
相關標籤/搜索