On Sat, Apr 16, 2011 at 4:33 AM, Lea Parker wrote:
> budget = float(raw_input('Enter the amount of your budget for the month:
> '))
>
> # Validation variable for budget
>
> while budget <0:
>
> print 'ERROR: the budget cannot be a negative amount'
>
> budget = float(raw
Hello
I now need to get the validator to work on my expense input. If the user
puts in a negative I want an error to come up. I have managed it for the
budget input but cannot seem to get it to work for the expense.
Thanks in advance again for your wonderful help.
"""This program