On Saturday, November 18, 2017 at 9:15:36 AM UTC-5, mostwanted wrote: > > I want grade 'A' to fall within a range of percentages, 'A' ranges from > 80%(being the lowest) to 100%(being the highest), how do i reflect that > here to get the system to grade properly?? >
if perc >= 80: The upper range doesn't matter, as presumably 100 is the maximum anyway. Note, though, that you have defined a B as >= 79. That means that you get a B only if your percentage is between 79 and 80 -- once you hit 80, it's an A. Is that really what you want? Anthony -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

