Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Python, Below you will find the U.S. Advance Monthly Sales for Retail and Food Services for 2023. This data can be found in the

In Python, Below you will find the U.S. Advance Monthly Sales for Retail and Food Services for 2023. This data can be found in the file called Sales_data.txt. The total sales estimates are shown in millions of dollars and are based on data from the Advance Monthly Retail Trade Survey, Monthly Retail Trade Survey.

 


Write a program that reads the sales data from the file and store it in two different lists. Store the kind of business into a one-dimensional list and then store the related sales data into a two-dimensional list. The data is separated by tabs (t). Then your program calculates and displays the following information:

  • the total retail and food services for each column field (e.g. 7 month total, Jul, Jun, and May). Make sure to remove the elipses ("...") from the kind of business. The total for each are as follows:
Kind of business7 Month TotalJulJunMay
Retail & food services total
4,746,465702,904705,873725,602
  • List the kind of business, and all relevant information, that had the highest level of sales.
  • List the kind of business, and all relevant information, that had the second highest level of sales.
  • List the kind of business, and all relevant information, that had the lowest level of sales.
  • List the kind of business, and all relevant information, that had the second lowest level of sales.
  • Write all of the above information out to a file titled "student_name_sales_analysis.txt" (substituting your name for student_name). Also include appropriate labels in your output. For example, write the "kind of business" description and along with "had the highest sales of" and then write the value that represents the highest level of sales.

The purpose of this assignment is to practice working with files and lists.

Cant use lambda for sort. 

 

Sales_data.txt:

Motor vehicle & parts dealers ........ 932432.00 136399.00 140447.00 143058.00  
Furniture & home furn. stores ......... 77532.00 10741.00 11294.00 11283.00  
Electronics & appliance stores ....... 49962.00 7209.00 7379.00 7250.00  
Building material & garden eq. &  supplies dealers ........ 295266.00 42308.00 46507.00 50940.00  
Food & beverage stores ........ 565154.00 83902.00 81829.00 83999.00  
Health & personal care stores ...... 245194.00 35031.00 36077.00 36718.00  
Gasoline stations ............ 376247.00 57101.00 56313.00 56733.00  
Clothing & accessories  stores .......... 166432.00 25124.00 24746.00 26557.00  
Sporting goods, hobby, musical instrument, & book stores ....... 55748.00 8482.00 8629.00 8350.00  
General merchandise stores ...... 487768.00 72725.00 72555.00 74209.00  
Miscellaneous store retailers ...... 105883.00 15629.00 16653.00 16998.00  
Nonstore retailers ......... 763858.00 113647.00 110419.00 115401.00  
Food services & drinking places ....... 624989.00 94606.00 93025.00 94106.00

Step by Step Solution

3.38 Rating (157 Votes )

There are 3 Steps involved in it

Step: 1

To write a Python program to read the sales data from the file and s... 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

Income Tax Fundamentals 2013

Authors: Gerald E. Whittenburg, Martha Altus Buller, Steven L Gill

31st Edition

1111972516, 978-1285586618, 1285586611, 978-1285613109, 978-1111972516

More Books

Students also viewed these Programming questions

Question

Factor by grouping. x 2 + 3x - 3y - xy

Answered: 1 week ago

Question

What are the 5 Cs of marketing channel structure?

Answered: 1 week ago