0
0
EV Technologyknowledge~30 mins

Levels of autonomy (SAE L0-L5) in EV Technology - Mini Project: Build & Apply

Choose your learning style9 modes available
Understanding Levels of Autonomy (SAE L0-L5)
📖 Scenario: You are learning about how self-driving cars work. Cars can have different levels of autonomy, from no automation to full automation. These levels are called SAE Levels 0 to 5.We will create a simple data structure to represent these levels and their descriptions, then organize and complete the information step-by-step.
🎯 Goal: Build a dictionary that lists SAE Levels 0 to 5 with their exact names and descriptions. Then add a variable to track the highest level. Next, create a list of levels that have some automation. Finally, add a summary statement about full automation.
📋 What You'll Learn
Create a dictionary with SAE levels 0 to 5 as keys and their exact names and descriptions as values
Add a variable called max_level set to 5
Create a list called automated_levels containing levels 1 to 5
Add a summary string called full_automation_summary describing level 5
💡 Why This Matters
🌍 Real World
Understanding SAE levels helps people know how much a car can drive itself and what to expect from different self-driving features.
💼 Career
This knowledge is useful for automotive engineers, product designers, and anyone working in electric or autonomous vehicle technology.
Progress0 / 4 steps
1
Create SAE levels dictionary
Create a dictionary called sae_levels with these exact entries:
0: 'No Automation: The human driver does all the driving tasks.',
1: 'Driver Assistance: The vehicle can assist with either steering or acceleration/deceleration.',
2: 'Partial Automation: The vehicle can control both steering and acceleration/deceleration but the human monitors the driving.',
3: 'Conditional Automation: The vehicle can drive itself under certain conditions but the human must be ready to take over.',
4: 'High Automation: The vehicle can drive itself in most conditions without human intervention.',
5: 'Full Automation: The vehicle can drive itself in all conditions without any human input.'
EV Technology
Need a hint?

Use a dictionary with numbers 0 to 5 as keys and the exact descriptions as values.

2
Add maximum level variable
Add a variable called max_level and set it to the number 5 to represent the highest SAE level.
EV Technology
Need a hint?

Just create a variable named max_level and assign it the value 5.

3
List automated SAE levels
Create a list called automated_levels that contains the numbers 1, 2, 3, 4, and 5 representing SAE levels with some automation.
EV Technology
Need a hint?

Create a list named automated_levels with the numbers 1 through 5.

4
Add full automation summary
Add a string variable called full_automation_summary with this exact text:
'Level 5 means the vehicle can drive itself in all conditions without any human input.'
EV Technology
Need a hint?

Create a string variable named full_automation_summary with the exact text given.