Solution to Python Mini-Project

Daniel Morales
May 13, 2020

Contents Outline

Solution to Python Mini-Project

May 13, 2020 55 seconds read

In the previous blog entry, we saw a mini python project in 20 steps, here you can find the solution to the exercise and solve your doubts about it. 


lovely_loveseat_description = """
    Lovely Loveseat. Tufted polyester blend on wood. 32 inches high x 40 inches wide x 30 inches deep. Red or white.
"""

lovely_loveseat_price = 254.00


stylish_settee_description = """
Stylish Settee. Faux leather on birch. 29.50 inches high x 54.75 inches wide x 28 inches deep. Black.
"""

stylish_sette_price = 180.50

luxuriious_lamp_description = """
    Luxurious Lamp. Glass and iron. 36 inches tall. Brown with cream shade.
"""

luxurious_lamp_price = 52.15

sales_tax = .088

customer_one_total = 0
customer_one_itemization = ""

customer_one_total += lovely_loveseat_price
customer_one_itemization += lovely_loveseat_description

customer_one_total += luxurious_lamp_price
customer_one_itemization += luxuriious_lamp_description

customer_one_tax = customer_one_total * sales_tax
customer_one_total += customer_one_tax

print("Customer One Items: " + customer_one_itemization)

print("Customer One Total: " + str(customer_one_total))


## console
Customer One Items: 
    Lovely Loveseat. Tufted polyester blend on wood. 32 inches high x 40 inches wide x 30 inches deep. Red or white.

    Luxurious Lamp. Glass and iron. 36 inches tall. Brown with cream shade.

Customer One Total: 333.09119999999996
Join our private community in Discord

Keep up to date by participating in our global community of data scientists and AI enthusiasts. We discuss the latest developments in data science competitions, new techniques for solving complex challenges, AI and machine learning models, and much more!