Forked from anonymous/gist:93c5c2b26c252471a480
Last active
August 29, 2015 14:07
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 characters
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