Skip to content

Instantly share code, notes, and snippets.

@jaredpar
Forked from anonymous/gist:93c5c2b26c252471a480
Last active August 29, 2015 14:07
def main():
#Declare
price = 99
quantity = float(input("How many packages have you purchased?"))
if quantity >= 10:
print ("Your discount is 20%.")
print ("Your total is ", quantity * price - quantity * price * .2)
else:
if quantity >= 20:
print ("Your discount is 30%. ")
print ("Your total is ", quantity * price - quantity * price *.3)
else:
if quantity >= 50:
print ("Your discount is 40%.")
print ("Your total is ", quantity * price - quantity * price * .4)
else:
if quantity >= 100:
print ("Your discount is 50%. ")
print ("Your total is ", quantity * price - quantity * price * .5)
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment