Python中缺少Indent错误

时间:2016-12-02 07:24:26

标签: python netbeans-8.1

我正在尝试运行othello的python程序。但我知道为什么它在“复制”中显示错误

Please help me resolve it

1 个答案:

答案 0 :(得分:0)

函数定义的主体必须缩进。

错:

def f():
print(1)

右:

def f():
    print(1)