0
0
AI for Everyoneknowledge~30 mins

Brief history of AI (from Turing to ChatGPT) in AI for Everyone - Mini Project: Build & Apply

Choose your learning style9 modes available
Brief History of AI (from Turing to ChatGPT)
📖 Scenario: You are creating a simple timeline to understand the key milestones in the history of Artificial Intelligence (AI), starting from Alan Turing's ideas to the development of ChatGPT.
🎯 Goal: Build a clear, step-by-step timeline listing important events and figures in AI history, helping you remember how AI evolved over time.
📋 What You'll Learn
Create a dictionary with exact AI milestones and their years
Add a variable to hold the current year for context
Use a loop to create a list of milestone descriptions
Add a final summary statement about AI progress
💡 Why This Matters
🌍 Real World
Understanding AI history helps people appreciate how technology evolved and impacts daily life.
💼 Career
Knowledge of AI milestones is useful for roles in education, technology communication, and AI development awareness.
Progress0 / 4 steps
1
Create AI milestones dictionary
Create a dictionary called ai_milestones with these exact entries: '1950': 'Alan Turing proposes the Turing Test', '1956': 'The term Artificial Intelligence is coined at Dartmouth Conference', '1997': 'IBM Deep Blue defeats chess champion Garry Kasparov', '2012': 'Deep learning breakthrough with ImageNet', '2022': 'OpenAI releases ChatGPT'.
AI for Everyone
Hint

Use curly braces {} to create a dictionary with year keys as strings and event descriptions as values.

2
Add current year variable
Create a variable called current_year and set it to the integer 2024 to represent the present year.
AI for Everyone
Hint

Just assign the number 2024 to a variable named current_year.

3
Create timeline list with descriptions
Use a for loop with variables year and event to iterate over ai_milestones.items(). Inside the loop, create a string in the format "In YEAR: EVENT" and add it to a list called timeline. Initialize timeline as an empty list before the loop.
AI for Everyone
Hint

Remember to create an empty list first, then add strings inside the loop using append().

4
Add final summary statement
Create a variable called summary and set it to the string "AI has evolved from simple tests to powerful language models like ChatGPT by 2024.".
AI for Everyone
Hint

Assign the exact sentence to the variable summary.