Python 3.3.2 Else:语法无效

时间:2013-09-02 01:50:18

标签: python-3.x

我是初学Python用户,我试图弄清楚我的无效语法在哪里,它似乎是由其他原因引起的:但我不知道为什么。

计划(进行中)

print ("__Fight_Master__")
print ("Type start to begin->")
if input() == "start" :
    print ("Loading Game...")
    else:
        print("Ending Game...")

-Aron

1 个答案:

答案 0 :(得分:2)

假设上面的代码在实际脚本中缩进,那么缩进是不正确的。应该是。

print ("__Fight_Master__")
print ("Type start to begin->")
if input() == "start" :
    print ("Loading Game...")
else:
    print("Ending Game...")