Question: answer question with a written code Write a function called def label(first, last, street, city, province): which prints out a mailing label: label (Andre, Trudel,
Write a function called def label(first, last, street, city, province): which prints out a mailing label: label ("Andre", "Trudel", "15 University Ave", "Wolfville", "NS") Andre Trudel 15 University Ave Wolfville, NS > label ("Donald", "Irump", "White House", "Washington", "DC") Donald Trump White House Washington, DC > The label function can only contain 1 print statement. This 1 print statement must produce 3 lines of output. Note that there is a comma between city and province in the output. Your output has to have the same format as shown above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
