score=81 if score>=80: print "Passed!" else: print "Failed..." |
---|
$ Passed! |
---|
print "Passed!" if score>=80 else "Failed..." |
---|
score1=65 if score1>=80: print "A" elif score1>=70: print "B" elif score1>=60: print "C" else: print "F" |
---|
$ Keep making efforts. |
---|
if 60<score1<79: print "Keep making efforts.\n" |
---|
a=30 if (a>40) or (a<): print "The value is in the range.\n" else: print "The value is out of the range.\n" |
---|
$ The value is out of the range. |
---|