I’m struggling with the “Receipts for Lovely Loveseats” project. This is what I did:
#inventory 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.”
lovely_loveseat_price = 254.00
#inventory 2
stylish_settee_description = “Stylish Settee. Faux leather on birch. 29.50 inches high x 54.75 inches wide x 28 inches deep. Black.”
stylish_settee_price = 180.50
#inventory 1
luxurious_lamp_description = “Luxurious Lamp. Glass and iron. 36 inches tall. Brown with cream shade.”
luxurious_lamp_price = 52.15
#tax
sales_tax = .088
#first sale!
customer_one_total = lovely_loveseat_price + luxurious_lamp_price + customer_one_tax
customer_one_tax = customer_one_total * sales_tax
customer_one_itemization = (“lovely_loveseat_description + luxurious_lamp_description”)
print = (“customer one items”)
print = customer_one_itemization
print = (“customer one total”)
print = customer_one_total
I keep getting this error:
What am I doing wrong? I’m a beginner so I’m v confused thanks!