Knowing When NOT to Use AI
📖 Scenario: You are part of a team deciding when to use AI tools for tasks in your workplace. Not every task is suitable for AI. Understanding when NOT to use AI helps avoid mistakes and ensures better results.
🎯 Goal: Build a simple checklist that identifies tasks where AI should NOT be used. This checklist will help you and your team decide quickly and clearly.
📋 What You'll Learn
Create a dictionary called
tasks with these exact entries: 'Medical diagnosis': 'High risk', 'Creative writing': 'Subjective', 'Sensitive personal advice': 'Privacy concern', 'Simple math calculations': 'Low complexity', 'Data entry': 'Repetitive'Create a variable called
avoid_reasons that lists the reasons to avoid AI use: 'High risk', 'Privacy concern', 'Subjective'Use a dictionary comprehension called
tasks_to_avoid that includes only tasks from tasks whose reason is in avoid_reasonsAdd a final line that sets a variable
final_checklist equal to tasks_to_avoid to complete the checklist💡 Why This Matters
🌍 Real World
This project helps teams decide when AI is not suitable, avoiding risks like privacy issues or incorrect decisions.
💼 Career
Understanding when NOT to use AI is important for roles in management, ethics, healthcare, and any job involving AI decision-making.
Progress0 / 4 steps