if语句中的Python缩进错误

时间:2015-07-05 17:49:00

标签: python

我在Python中遇到了以下问题。

int(raw_input())

错误:

sister_age = 15

brother_age = 12

if sisiter_age > brother_age:
    print "sisiter is older"
    else:

无论我多少次尝试更改索引,都会显示错误。

1 个答案:

答案 0 :(得分:0)

假设else语句之后有一些内容,else语句应与if语句对齐,而不是在其中。

示例 -

if sisiter_age > brother_age:
    print "sisiter is older"
else:

此外,如果您在else语句中没有(或需要)任何内容,则应将其删除。