Question: Now, construct a program that writes an email to handle a customer complaint about a missing item in an online order using f-string. Here's

Now, construct a program that writes an email to handle a customer complaint about a missing item in an online order using f-string. Here's a sample input-output sequence: > The Customer name is: Alan Mathison Turing > The missing item is: notebook > Should we resend or refund? (resend/refund): refund > Dear Alan Mathison Turing, > I am sorry to hear that you have not received your notebook. We will certainly refund your item. > Sincerely, > Customer Support # Your solutions here #step 1: Use input() to ask for name, missing item, and policy name = input ("The customer name: ") item= #YOUR CODE HERE refund_or_resend = #YOUR CODE HERE # step 2: use f-string to format print statement # Finish the print statement using an f-string so it prints a message like the one in the example. character to print on multiple lines if needed. # Use multiple print() or the newline print()
Step by Step Solution
3.56 Rating (153 Votes )
There are 3 Steps involved in it
Creating Python a program that writes an email to handle a customer complaint about a missing item i... View full answer
Get step-by-step solutions from verified subject matter experts
