#列表与元组的区别:列表是可以修改的,元组是不可以修改的。列表用[]将元素括起来,元组用()将元素括起来。
#遍历元组,比如:
dimensions=(200,50)
for dimension in dimensions:
print(dimension)
#元组不能修改,但是可以给存储元组的变量重新赋值。比如:
tuples=(300,400,500)
for tuple in tuples:
print("原始元组:"+str(tuple))
"""变量重新赋值"""
tuples=(100,600,800)
for tuple in tuples:
print("修改后元组:"+str(tuple))