-
-
Save jaredpar/b814a2fa081fa6d76f68 to your computer and use it in GitHub Desktop.
Revisions
-
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ 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()