Python定义函数时如何跳转到下一行?

How to jump to the next line when defining a function in Python?

我目前正在使用 Mac 终端来学习 Python 基础知识,但我不知道如何在定义函数时换行,因为每当我点击“Enter ",它只是抛出一个错误。

        >>> def f():
        ... a = 10
          File "<stdin>", line 2
            a = 10
            ^
        IndentationError: expected an indented block after function definition on line 1
        >>> 

缩进表示块的开始和结束位置。函数定义中的所有内容都是缩进的:

>>> def f():
...     a = 10
...     print(a)
...
>>> f()
10

第一行缩进表示函数结束。