Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. lovely_loveseat_description = 'Lovely Loveseat. Tufted polyester blend on wood. 32 inches high x 40 inches wide x 30 inches deep. Red or white.
  2. '
  3. lovely_loveseat_price = 254.00
  4. stylish_settee_description = 'Stylish Settee. Faux leather on birch. 29.50 inches high x 54.75 inches wide x 28 inches deep. Black.
  5. '
  6. stylish_settee_price = 180.50
  7. luxurious_lamp_description = 'Luxurious Lamp. Glass and iron. 36 inches tall. Brown with cream shade.
  8. '
  9. luxurious_lamp_price = 52.15
  10.  
  11. sales_tax = .088
  12.  
  13. customer_one_total = 0
  14.  
  15. customer_one_itemization= ''
  16.  
  17. customer_one_total = 254.00
  18.  
  19. customer_one_itemization = lovely_loveseat_description
  20.  
  21. customer_one_total = 254.00 + 52.15
  22.  
  23. customer_one_itemization = lovely_loveseat_description + luxurious_lamp_description
  24.  
  25. customer_one_tax = customer_one_total * sales_tax
  26.  
  27. print('Customer One Items:')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement