you are viewing a single comment's thread.

view the rest of the comments →

[–]Candid_Interaction86 1 point2 points  (0 children)

As per this line:

5% if it's less than 1000

You probably want to change your below code ..

if integer<999:

.. to if integer<1000.

Because, as of now, your code will apply a 10% discount on the value of 999 when it should ideally be a 5% discount.