Problems and Solutions
n = [3, 5, 7]def list_function(x): x[1] = x[1] + 3 return xprint list_function(n)
n = [3, 5, 7]
ReplyDeletedef list_function(x):
x[1] = x[1] + 3
return x
print list_function(n)