Aggregation functions (sum, mean, std)
📖 Scenario: You work in a small store and have a list of daily sales amounts in dollars. You want to understand the total sales, the average sales per day, and how much the sales vary from day to day.
🎯 Goal: Build a simple Python program that calculates the total sales, average sales, and standard deviation of sales from a list of daily sales amounts.
📋 What You'll Learn
Create a list of daily sales amounts with exact values
Create a variable to hold the number of days
Calculate the sum, mean, and standard deviation of the sales using Python code
Print the results clearly
💡 Why This Matters
🌍 Real World
Stores and businesses often analyze daily sales to understand performance and plan inventory.
💼 Career
Data analysts and business analysts use aggregation functions like sum, mean, and standard deviation to summarize and interpret data.
Progress0 / 4 steps