feb...@gmail.com wrote:
...
        elif bank >= 10000 and bank <= 24999:
                rate = 0.0085
> ...

Also, (although not useful here as others have pointed out),
note that particular code means the same thing as:
...
    elif 10000 <= bank <= 24999:
        rate = 0.0085
...


--Scott David Daniels
scott.dani...@acm.org
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to