0
0
AI for Everyoneknowledge~30 mins

Setting up AI routines for daily use in AI for Everyone - Try It Yourself

Choose your learning style9 modes available
Setting up AI routines for daily use
📖 Scenario: You want to organize your daily tasks using AI tools to help you stay productive and manage your time better.
🎯 Goal: Build a simple plan that lists your daily tasks, sets priorities, and schedules AI reminders to help you complete them efficiently.
📋 What You'll Learn
Create a list of daily tasks with exact names
Set a priority level for each task
Use a simple method to assign AI reminders based on priority
Complete the routine setup with a summary of tasks and reminders
💡 Why This Matters
🌍 Real World
People use AI routines to manage their daily activities efficiently, ensuring important tasks get attention at the right time.
💼 Career
Understanding how to organize tasks and automate reminders is useful for roles in project management, personal productivity coaching, and AI assistant development.
Progress0 / 4 steps
1
Create your daily tasks list
Create a list called daily_tasks with these exact tasks: 'Check emails', 'Team meeting', 'Project work', 'Exercise', and 'Read news'.
AI for Everyone
Hint

Use square brackets [] to create a list and separate tasks with commas.

2
Assign priority levels to tasks
Create a dictionary called task_priority that assigns these exact priorities: 'Check emails': 2, 'Team meeting': 1, 'Project work': 1, 'Exercise': 3, 'Read news': 3.
AI for Everyone
Hint

Use curly braces {} to create a dictionary with task names as keys and numbers as values.

3
Set AI reminders based on priority
Create a new dictionary called ai_reminders using a dictionary comprehension that sets reminder times: priority 1 tasks get '9:00 AM', priority 2 tasks get '11:00 AM', and priority 3 tasks get '6:00 PM'. Use task_priority to assign reminders.
AI for Everyone
Hint

Use a dictionary comprehension with for task, priority in task_priority.items() and conditional expressions to assign times.

4
Complete your AI routine setup
Create a summary dictionary called daily_routine that combines each task with its priority and reminder time. Use a dictionary comprehension iterating over daily_tasks to create entries where each key is the task and the value is another dictionary with keys 'priority' and 'reminder' from task_priority and ai_reminders.
AI for Everyone
Hint

Use a dictionary comprehension over daily_tasks and create nested dictionaries for each task.