[email protected] 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
[email protected]
--
http://mail.python.org/mailman/listinfo/python-list
