标签: python python-3.x
我无法理解为什么python会给我上面的错误!!
def my_function(x): for i in range(0, len(x)): x[i] = x[i] * 2 return x print (my_function(range(3)))