0
0
AI for Everyoneknowledge~30 mins

What personal data not to share with AI in AI for Everyone - Mini Project: Build & Apply

Choose your learning style9 modes available
What Personal Data Not to Share with AI
📖 Scenario: You want to learn how to protect your personal information when using AI tools online. This project will help you understand which types of personal data you should avoid sharing with AI systems to stay safe and private.
🎯 Goal: Build a clear list of personal data types that should not be shared with AI, along with reasons why. This will help you recognize and avoid sharing sensitive information when interacting with AI.
📋 What You'll Learn
Create a list called personal_data with specific personal data types
Add a variable called data_to_avoid to highlight sensitive data
Use a loop to filter and create a list called avoid_sharing with only data types to avoid sharing
Add a final summary string called summary explaining why avoiding sharing this data is important
💡 Why This Matters
🌍 Real World
Knowing what personal data not to share with AI helps protect your privacy and security when using online AI tools.
💼 Career
This knowledge is important for roles in digital safety, customer support, and anyone working with AI or data privacy.
Progress0 / 4 steps
1
Create a list of personal data types
Create a list called personal_data containing these exact strings: 'Full name', 'Home address', 'Phone number', 'Favorite color', 'Social security number', 'Email address', 'Bank account number', 'Pet's name'.
AI for Everyone
Hint

Make sure to include all the exact strings in the list personal_data.

2
Mark sensitive data to avoid sharing
Create a list called data_to_avoid containing these exact strings: 'Home address', 'Social security number', 'Bank account number', 'Phone number'.
AI for Everyone
Hint

Include only the exact sensitive data items in data_to_avoid.

3
Filter the data to avoid sharing
Use a for loop with variable item to iterate over personal_data. Create a new list called avoid_sharing that includes only items from personal_data that are also in data_to_avoid.
AI for Everyone
Hint

Use a loop to check each item and add it to avoid_sharing only if it is in data_to_avoid.

4
Add a summary explaining why to avoid sharing
Create a string variable called summary with this exact text: 'Avoid sharing sensitive personal data with AI to protect your privacy and prevent identity theft.'
AI for Everyone
Hint

Type the exact summary text inside the string variable summary.