how do i do an insufficient cash output when the difference from the cash and the product is in the negative
cash = float(input('How much money did you recieve? '))
acer1 = (299.99)
acer2 = (399.99)
acer3 = (499.99)
insufficient_balance = 'Insufficient Cash'
negative_numbers = -1
while negative_numbers < -999_999:
print(negative_numbers)
negative_numbers += -1
model = input('What model do you want? ')
if model == 'acer1':
print('Change: ')
print(cash - acer1)
print('Thank you for shopping with us')
elif model == 'acer2':
print('Change: ')
print(cash - acer2)
print('Thank you for shopping with us')
elif model == 'acer3':
print('Change: ')
print(cash - acer3)
print('Thank you for shopping with us')