关于if结构的问题

关于if结构的问题

别笑话我,我刚学习这个(也没编过程),刚接触python
我想问一下,下面我写的这个if-else-if 结构的代码,为什么不论我敲什么数值进去,始终只是显示“just passed",比如我填80,也是显示这句话,语法上是哪出错了呢? 请解释一下,谢谢

[Copy to clipboard] [ - ]
CODE:
grade=raw_input("what's your grade?")
if grade>60:
    print "just passed!"
else:
    if grade<60:
        print "you failed"
    else:
        if grade>90:
           print "super!"

将第一句改为
grade = int( raw_input("what's your grade?") )
具体因为请参考文档,或等待他人解答。强烈建议细读一本入门书。
你的 if-else-if 也寫錯了

[Copy to clipboard] [ - ]
CODE:
# 把input 的字轉成整數類型,otherwise it is string type!!!
grade = int( raw_input("What's your grade? "))

if grade => 90:
     print "Super"
elif grade >= 70 and grade < 90:
     print "Good!"
elif grade >= 60 and grade < 70:  
     print "Just passed!"   
else:
     print "You failed!"

谢谢,我看的太不仔细了,回家好好的看基础的部分