Daily and Shift Reports
📖 Scenario: You work in a factory that uses a SCADA system to monitor machines. Every day, you need to create reports showing how many units each machine produced during different shifts.This helps the factory manager see which machines are working well and when.
🎯 Goal: Create a simple program that stores machine production data, sets a shift time, calculates total units produced during that shift, and then prints the report.
📋 What You'll Learn
Create a dictionary called
machine_production with exact machine names and units producedCreate a variable called
shift with the exact value 'morning'Calculate total units produced during the
shift using a loopPrint the total units produced in the
shift with a clear message💡 Why This Matters
🌍 Real World
Factories use SCADA systems to monitor machine output and generate reports for daily and shift production. This helps managers make decisions about maintenance and staffing.
💼 Career
Understanding how to collect, process, and report production data is key for roles in industrial automation, operations, and DevOps for manufacturing systems.
Progress0 / 4 steps