Python 比较运算 Python 运算符 Python 循环 Python 比较运算 x = 45 if x > 95: print "Student is brilliant" elif x < 30: print "Student is poor" elif x < 95 and x > 30: print "Student is average" print "The end" Python 运算符 Python 循环