Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Generate Product Summary Report | Automating Business Analysis Tasks
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
Python for Business Analysts

bookChallenge: Generate Product Summary Report

Automating report generation is a powerful way to streamline business analysis. By letting Python handle the repetitive task of formatting and compiling product summaries, you can focus on interpreting results and making strategic decisions. Automated reports not only save time but also ensure that every report follows a consistent structure, reducing errors and making it easier for stakeholders to understand key metrics at a glance.

Task

Swipe to start coding

Write a function generate_product_report(summary_dict) that creates a formatted report string from a summary dictionary mapping product names to their total 'units_sold' and 'revenue'. The report should list each product with its units sold and revenue, and include a total revenue line at the end.

  • For each product in summary_dict, add a line showing the product name, its units sold, and its revenue formatted as dollars with two decimal places.
  • After listing all products, add a line showing the total revenue across all products, formatted as dollars with two decimal places.
  • Return the full report as a single string, with each line separated by a newline character.

Solution

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 3. ChapterΒ 3
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

close

bookChallenge: Generate Product Summary Report

Swipe to show menu

Automating report generation is a powerful way to streamline business analysis. By letting Python handle the repetitive task of formatting and compiling product summaries, you can focus on interpreting results and making strategic decisions. Automated reports not only save time but also ensure that every report follows a consistent structure, reducing errors and making it easier for stakeholders to understand key metrics at a glance.

Task

Swipe to start coding

Write a function generate_product_report(summary_dict) that creates a formatted report string from a summary dictionary mapping product names to their total 'units_sold' and 'revenue'. The report should list each product with its units sold and revenue, and include a total revenue line at the end.

  • For each product in summary_dict, add a line showing the product name, its units sold, and its revenue formatted as dollars with two decimal places.
  • After listing all products, add a line showing the total revenue across all products, formatted as dollars with two decimal places.
  • Return the full report as a single string, with each line separated by a newline character.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 3. ChapterΒ 3
single

single

some-alt