在Python控制台中调用函数时的SyntaxError

时间:2017-02-17 08:10:22

标签: python

调用已定义的函数时出现语法错误:

>>> def f(x):                               
...     return x ** 2
... f(3)
  File "<stdin>", line 3
    f(3)
    ^
SyntaxError: invalid syntax

1 个答案:

答案 0 :(得分:3)

在编写/定义函数后,按enter,直到再次收到提示>>>。之后你就完成了函数的定义,你就可以使用它了。