Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Python Help Please Q3. saveCustomerinfo (customer_list, sort_tuple=, filename=): Same as the printCustomerInfo format but should have an additional argument filename to give the user the

image text in transcribed

Python Help Please

Q3. saveCustomerinfo (customer_list, sort_tuple="", filename=""): Same as the printCustomerInfo format but should have an additional argument filename to give the user the option to save the customer_list to file instead of printing to screen. The default value for filename is the empty string (*). If the filename is "", the user wants to see the list on the screen, therefore simply call the printCustomerInfo(...). If the filename is a non-empty string (such as output"), use that name to save the customer_list to a text file ("output.txt"), same format as printCustomerinfo. Note that the program must add the .txt" extension, and sort is only applicable inside this function, this action shouldn't modify the customer_list in-place. saveCustomerInfo (customer_list, sort_tuple="customer", True), filename="output") output.txt Annabel, served by clerk-A, spent 17 minutes. Brian, served by clerk-B, spent 9 minutes. Carlos, served by clerk-C, spent 15 minutes. Note that saveCustomerInfo calls printCustomerinfo from unittesting, therefore, you must need printCustomerinfo implemented first, otherwise you may get SyntaxError. Save & Run Original - 1 of 1 1 2 def saveCustomerInfo (customer_list, sort_tuple="", filename=""): 3 # write code here 4 pass 5 6

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Knowledge Discovery In Databases

Authors: Animesh Adhikari, Jhimli Adhikari

1st Edition

3319132121, 9783319132129

More Books

Students also viewed these Databases questions