0
0
EV Technologyknowledge~30 mins

Career opportunities in EV sector in EV Technology - Mini Project: Build & Apply

Choose your learning style9 modes available
Career Opportunities in EV Sector
📖 Scenario: You are exploring the growing field of electric vehicles (EVs) and want to understand the different career paths available in this sector.
🎯 Goal: Build a simple list of career roles in the EV sector, add a category filter, and then organize the roles by category to see the opportunities clearly.
📋 What You'll Learn
Create a list of EV career roles with exact names
Add a variable to filter roles by category
Use a loop to select roles matching the category
Organize and display the filtered roles clearly
💡 Why This Matters
🌍 Real World
Understanding career options in the EV sector helps learners explore job roles in a fast-growing industry focused on clean energy and technology.
💼 Career
Knowledge of EV career paths is useful for students, job seekers, and professionals planning to enter or switch to the electric vehicle industry.
Progress0 / 4 steps
1
Create a list of EV career roles
Create a list called ev_careers with these exact roles as strings: 'Battery Engineer', 'Charging Infrastructure Specialist', 'Electric Motor Designer', 'EV Software Developer', 'Sustainability Analyst'.
EV Technology
Need a hint?

Use square brackets to create a list and include each role as a string inside quotes.

2
Add a category filter variable
Create a variable called category_filter and set it to the string 'Engineering'.
EV Technology
Need a hint?

Assign the string 'Engineering' to the variable category_filter using the equals sign.

3
Select roles matching the category
Create a list called filtered_roles that includes only roles from ev_careers which contain the word 'Engineer' or 'Designer'. Use a for loop with the variable role to check each item.
EV Technology
Need a hint?

Use a for loop to check each role. Use if to test if 'Engineer' or 'Designer' is in the role string, then add it to filtered_roles.

4
Organize and finalize the career list
Create a dictionary called career_categories with the key 'Engineering' and the value as the list filtered_roles. This groups the filtered roles under the Engineering category.
EV Technology
Need a hint?

Use curly braces to create a dictionary and assign the list filtered_roles to the key 'Engineering'.