所以在python的新手中,我正在学习A级计算,而我们的语言是精益求精的。 我真的远远落后,我什么都不知道。尽管已经有2个学期,只剩下4/5个月,直到考试期间。 所以我一直在观看视频教程,由于某些原因我无法使用"否则" ![这是教程已完成的内容,我已将所有内容复制出来] [1]
以下是教程的内容:
sister_age = 15
brother_age = 12
if sister_age > brother_age:
print" "sister is older"
else:
print "brother is older"
这就是"姐姐年纪大了
但我已将其复制出来:
sister_age=15
brother_age=12
if sister_age>brother_age:
print("sister is older")
else:
然后出现错误消息,说明以下内容:
" SyntaxError:unindent与任何外部缩进级别都不匹配"
对不起,我只是不明白。 非常感谢您的时间阅读本文。
答案 0 :(得分:1)
缩进是关键。
sister_age = 15
brother_age = 12
if sister_age > brother_age:
print "sister is older"
else:
print "brother is older"