0
0
AI for Everyoneknowledge~30 mins

Common prompting mistakes to avoid in AI for Everyone - Mini Project: Build & Apply

Choose your learning style9 modes available
Common Prompting Mistakes to Avoid
📖 Scenario: You are learning how to communicate clearly with AI tools like chatbots or virtual assistants. Good prompts help get better answers.
🎯 Goal: Build a simple checklist of common prompting mistakes to avoid when talking to AI.
📋 What You'll Learn
Create a list of common prompting mistakes
Add a variable to count how many mistakes are listed
Use a loop to display each mistake with a number
Add a final statement summarizing the importance of clear prompts
💡 Why This Matters
🌍 Real World
Clear communication with AI tools helps get accurate and useful answers quickly.
💼 Career
Understanding how to write good prompts is important for roles in AI, customer support, and content creation.
Progress0 / 4 steps
1
Create the list of common prompting mistakes
Create a list called mistakes with these exact entries: 'Being too vague', 'Asking multiple questions at once', 'Using unclear pronouns', 'Not specifying the format', and 'Ignoring context'.
AI for Everyone
Hint

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

2
Add a variable to count the number of mistakes
Create a variable called count and set it to the length of the mistakes list using the len() function.
AI for Everyone
Hint

Use len(mistakes) to get how many items are in the list.

3
Use a loop to display each mistake with a number
Write a for loop using index and mistake with enumerate(mistakes, 1) to go through the list. Inside the loop, create a string called line that combines the index, a period, a space, and the mistake text.
AI for Everyone
Hint

Use enumerate to get both the number and the item. Use an f-string to combine them.

4
Add a final statement about clear prompts
Create a variable called summary and set it to the string 'Clear prompts help AI give better answers.'.
AI for Everyone
Hint

Assign the exact string to the variable summary.