0
0
EV Technologyknowledge~30 mins

India's EV policy and incentives (FAME II) in EV Technology - Mini Project: Build & Apply

Choose your learning style9 modes available
Understanding India's EV Policy and Incentives (FAME II)
📖 Scenario: You are learning about India's efforts to promote electric vehicles (EVs) through government policies. One important policy is the Faster Adoption and Manufacturing of Hybrid and Electric Vehicles (FAME) scheme, especially its second phase called FAME II.This project will help you understand the key components of FAME II and how it supports EV adoption in India.
🎯 Goal: Build a simple structured summary of India's FAME II policy and its incentives. You will create a data structure listing the main incentives, set a target year for EV adoption, identify the types of vehicles covered, and finalize the summary with a key policy statement.
📋 What You'll Learn
Create a dictionary with exact incentive names and their descriptions as given
Add a variable for the target year of FAME II
List the types of vehicles covered under FAME II in a list
Add a final statement summarizing the policy focus
💡 Why This Matters
🌍 Real World
Understanding government policies like FAME II helps citizens and businesses make informed decisions about electric vehicle adoption and investments.
💼 Career
Knowledge of EV policies is valuable for roles in automotive industry, environmental planning, policy analysis, and sustainable technology development.
Progress0 / 4 steps
1
Create the incentives dictionary
Create a dictionary called incentives with these exact entries: 'Subsidy': 'Financial support to reduce EV cost', 'Charging Infrastructure': 'Support for setting up charging stations', 'Local Manufacturing': 'Encouragement for domestic EV production'
EV Technology
Need a hint?

Use curly braces to create a dictionary with keys and values as strings.

2
Add the target year variable
Add a variable called target_year and set it to the integer 2024, which is the target year for FAME II implementation.
EV Technology
Need a hint?

Assign the integer 2024 to the variable named target_year.

3
List the vehicle types covered
Create a list called vehicle_types containing these exact strings: 'Electric Two-Wheelers', 'Electric Three-Wheelers', 'Electric Four-Wheelers', 'Electric Buses'.
EV Technology
Need a hint?

Use square brackets to create a list with the exact vehicle type strings.

4
Add the policy summary statement
Add a string variable called policy_summary with this exact text: 'FAME II aims to accelerate EV adoption through subsidies and infrastructure support.'
EV Technology
Need a hint?

Assign the exact policy summary text to the variable policy_summary.