题解 | #牛客运动会#
牛客运动会
http://www.nowcoder.com/practice/ca23b85cb3d447fea91803043013859c
my_tuple = ('Tom', 'Andy')
print('Here is the original tuple:') for name in my_tuple: print(name)
try: my_tuple[1] = 'Allen' except: print() print("my_tuple[1] = 'Allen' cause a TypeError: 'tuple' object does not support item assignment")
my_tuple = ('Tom', 'Allen') print() print('my_tuple was changed to:') for name in my_tuple: print(name)