在python中执行语句时出现语法错误

时间:2015-06-15 06:29:27

标签: python

>>> x=5
>>> y=10
>>> if(x>y):
... print 'x is greater':
  File "<stdin>", line 2
    print 'x is greater':
        ^
IndentationError: expected an indented block

1 个答案:

答案 0 :(得分:0)

错误消息说明了一切。 Python使用缩进来处理块,并且因为print语句应该在if块内,所以它应该缩进:

>>> x=5
>>> y=10
>>> if(x>y):
...     print 'x is greater': # Note the indentation here