Complete the code to add the customer's name to the invoice.
invoice.customerName = [1]The customer's name should be a text string, so we use quotes around the name.
Complete the code to set the invoice total amount.
invoice.totalAmount = [1]The total amount should be a number, not text, so use 100.00 without quotes.
Fix the error in setting the invoice date.
invoice.date = [1]The date should be in a standard string format like "YYYY-MM-DD" for consistency and parsing.
Fill both blanks to create a dictionary entry for an item with its price.
invoice.items = {"[1]": [2]The key should be the item name as a string, and the value should be the price as a number.
Fill all three blanks to create an invoice summary with customer, total, and paid status.
summary = {"customer": [1], "total": [2], "paid": [3]The customer is a string, total is a number, and paid is a boolean value.
