Why drones solve real industry problems
📖 Scenario: Imagine you work for a company that uses drones to help farmers check their fields. Drones can fly over large areas quickly and collect important information like plant health and soil condition.
🎯 Goal: You will create a simple program that stores data about different fields and their health scores, then find which fields need attention based on a health threshold.
📋 What You'll Learn
Create a dictionary called
fields with exact field names and health scoresCreate a variable called
health_threshold with the value 70Use a dictionary comprehension to create a new dictionary
fields_needing_attention with fields having health below the thresholdPrint the
fields_needing_attention dictionary💡 Why This Matters
🌍 Real World
Drones help farmers by quickly checking large fields and identifying areas that need care, saving time and resources.
💼 Career
Understanding how to process and filter data collected by drones is useful for jobs in agriculture technology, environmental monitoring, and drone software development.
Progress0 / 4 steps