n = [3,5,7] def myFun(x): x[1]+=3 return x print myFun(n) I get the error : File "python", line 2 def myFun(x): ^ IndentationError: unexpected indent Oops, ...
確定! 回上一頁