Decisions if temp > 90: print "It's hot!" if x <= 0: print "negative" else: print "nonnegative" if x > 8: print "Excellent" elif x >= 6: print "Good" elif x >= 4: print "Fair" elif x >= 2: print "OK" else: print "Poor"