Hey guys! i just started here
can you please check my code and give me your advice or comments?
# descriptions
lovely_loveseat_description = """ Lovely Loveseat. Tufted polyester blend on wood. 32 inches high x 40 inches wide x 30 inches deep. Red or white. """
stylish_sette_description = """ Stylish Settee. Faux leather on birch. 29.50 inches high x 54.75 inches wide x 28 inches deep. Black. """
luxurious_lamp_description = """ Luxurious Lamp. Glass and iron. 36 inches tall. Brown with cream shade. """
# prices
lovely_loveseat_price = 254.00
stylish_sette_price = 180.50
luxurious_lamp_price = 52.15
# customer items
customer_one_itemization = ""
customer_one_itemization = (lovely_loveseat_description +
luxurious_lamp_description)
# customer total (without taxes)
customer_one_total = 0
customer_one_total = (lovely_loveseat_price + luxurious_lamp_price)
# customer Taxes
sales_tax = 0.088
customer_one_tax = 0
customer_one_tax = (customer_one_total * sales_tax)
# calculating customer total (with taxes)
customer_one_net = customer_one_tax + customer_one_total
# output
print("Customer_One_Items:")
print(customer_one_itemization)
print("Customer One Total Without-Taxes")
print(customer_one_total)
print("Customer One Total With-Taxes")
print(customer_one_net)