python基础——字典基础知识点

a=(1,2,3,4,5)
print(type(a))

#访问元组:
a=(1,2,3,4)
for i in a :
    print(i)

i=0
while i

你可能感兴趣的:(python基础——字典基础知识点)