#习题6,下列两段代码输出什么
#代码1
#
#描述
#append() 方法用于在列表末尾添加新的对象。
#
#语法
#append()方法语法:
#
#list.append(obj)
#参数
#obj -- 添加到列表末尾的对象。
#返回值
#该方法无返回值,但是会修改原来的列表。
#
#实例
#以下实例展示了 append()函数的使用方法:
a = 1 #string,number,turple是不可更改的对象
def fun(a):
a = 2
print (a) #这个在函数内返回值为2
fun(a)
print (a) #函数值在外返回1


#代码2
a = [] #list与dict是可以更改的对象
def fun(a):
a.append(1)
fun(a)
print (a)
09-10 12:27