0
0
AI for Everyoneknowledge~30 mins

What AGI means and current progress in AI for Everyone - Mini Project: Build & Apply

Choose your learning style9 modes available
Understanding What AGI Means and Current Progress
📖 Scenario: You are curious about artificial intelligence and want to learn what AGI means and how far we have come in developing it.
🎯 Goal: Build a simple explanation and timeline that shows what AGI is and the current progress in AI development.
📋 What You'll Learn
Create a dictionary called agi_definition with a clear explanation of AGI
Create a list called agi_progress with key milestones in AI development
Use a variable called current_year to represent the present year
Add a final summary string called agi_summary that combines the definition and progress
💡 Why This Matters
🌍 Real World
Understanding AGI helps people grasp the future possibilities and challenges of AI technology in everyday life.
💼 Career
Knowledge of AGI and AI progress is useful for roles in technology, education, policy making, and AI ethics.
Progress0 / 4 steps
1
Create the AGI definition
Create a dictionary called agi_definition with one key 'meaning' and the value 'AGI stands for Artificial General Intelligence, which means a machine that can understand, learn, and apply knowledge like a human across many tasks.'
AI for Everyone
Need a hint?

Use a dictionary with one key called 'meaning' and assign the exact explanation as the value.

2
List key milestones in AI progress
Create a list called agi_progress with these exact strings as items: '1956: AI term coined', '1997: Deep Blue beats chess champion', '2012: Deep learning breakthrough', '2023: Large language models widely used'
AI for Everyone
Need a hint?

Use a list with the exact milestone strings in the given order.

3
Add the current year variable
Create a variable called current_year and set it to the integer 2024
AI for Everyone
Need a hint?

Just assign the number 2024 to the variable named current_year.

4
Create a summary combining definition and progress
Create a string variable called agi_summary that combines the AGI meaning from agi_definition['meaning'] and the last milestone from agi_progress with this exact format: "AGI means: {meaning}. Latest progress: {last_milestone}. Current year: {current_year}."
AI for Everyone
Need a hint?

Use an f-string to combine the dictionary value, last list item, and current_year variable exactly as shown.