Global EV Adoption Trends
📖 Scenario: You are working with a global energy research team. They want to understand how electric vehicle (EV) adoption is growing worldwide. You will create a simple data structure to hold EV adoption numbers for different countries, set a threshold to identify leading countries, filter the data, and finalize the list of top adopters.
🎯 Goal: Build a data structure with EV adoption numbers by country, set a threshold for high adoption, filter countries exceeding that threshold, and finalize the list of top EV adopters.
📋 What You'll Learn
Create a dictionary named
ev_adoption with exact country names and EV adoption numbersCreate a variable named
high_adoption_threshold with the value 500000Use a dictionary comprehension named
top_ev_countries to select countries with EV adoption above the thresholdAdd a final step to include a summary string variable
summary describing the number of top EV adopter countries💡 Why This Matters
🌍 Real World
Understanding EV adoption trends helps governments and companies plan infrastructure and policies to support electric vehicles.
💼 Career
Data analysts and energy researchers use similar data filtering and summarizing techniques to report on technology adoption and market trends.
Progress0 / 4 steps