Advertisement
exqxste

Create Purchasing Information and Receipts for Lovely Lovese

Jul 10th, 2020
1,331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.13 KB | None | 0 0
  1. # Made by CelestialTwist
  2.  
  3. lovely_loveseat_description = “”“Love Loveseat. Tufted polyester blend on wood. 32 inches high x 40 inches wide x 30 inches deep. Red or white.”""
  4. #price
  5. lovely_loveseat_price = 254.00
  6. stylish_settee_description = “”“Stylish Settee. Faux leather on birch. 29.50 inches high x 54.75 inches wide x 28 inches deep. Black.”""
  7. #price
  8. stylish_settee_price = 180.50
  9. luxurious_lamp_description = “”“Luxurious Lamp. Glass and iron. 36 inches tall. Brown with cream shade.”""
  10. luxurious_lamp_price = 52.15
  11. sales_tax = .088
  12. customer_one_total = 0
  13. customer_one_itemization = “”
  14. customer_one_total += customer_one_total + lovely_loveseat_price
  15. customer_one_itemization += customer_one_itemization + lovely_loveseat_description
  16. customer_one_total += customer_one_total + luxurious_lamp_price
  17. customer_one_itemization += customer_one_itemization + luxurious_lamp_description
  18. customer_one_tax = customer_one_total * sales_tax
  19. customer_one_total += customer_one_total + customer_one_tax
  20.  
  21. print("Customer One Items: " + customer_one_itemization)
  22. print("Customer One Total: " + str(customer_one_total))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement