single
Challenge: 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.
スワイプしてコーディングを開始
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.
解答
フィードバックありがとうございます!
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください