0
0
Cybersecurityknowledge~30 mins

Why cybersecurity matters - See It in Action

Choose your learning style9 modes available
Why Cybersecurity Matters
📖 Scenario: You work in a small company that wants to protect its important information from online threats. Your manager asks you to create a simple list of common cybersecurity risks and explain why protecting against them is important.
🎯 Goal: Build a clear list of cybersecurity risks with explanations to help your team understand why cybersecurity matters.
📋 What You'll Learn
Create a dictionary called cybersecurity_risks with exact keys and values describing risks
Add a variable called importance that explains why cybersecurity is important
Use a for loop with variables risk and description to iterate over cybersecurity_risks.items()
Add a final summary string called summary that combines the importance and risks
💡 Why This Matters
🌍 Real World
Understanding common cybersecurity risks helps individuals and companies protect their data and devices from attacks.
💼 Career
Basic knowledge of cybersecurity risks is important for roles in IT support, office administration, and any job that handles sensitive information.
Progress0 / 4 steps
1
Create the cybersecurity risks dictionary
Create a dictionary called cybersecurity_risks with these exact entries: 'Phishing' with value 'Tricking people to give sensitive info', 'Malware' with value 'Software that harms devices', and 'Data Breach' with value 'Unauthorized access to data'.
Cybersecurity
Need a hint?

Use curly braces {} to create the dictionary with the exact keys and values.

2
Add importance explanation
Add a variable called importance and set it to the string 'Cybersecurity protects our information and devices from harm.'
Cybersecurity
Need a hint?

Use a simple assignment to create the importance variable with the exact text.

3
Loop over the risks dictionary
Use a for loop with variables risk and description to iterate over cybersecurity_risks.items(). Inside the loop, create a new dictionary called risk_summaries that stores each risk as key and its description as value.
Cybersecurity
Need a hint?

Start with an empty dictionary risk_summaries = {} and fill it inside the loop.

4
Add final summary combining importance and risks
Add a string variable called summary that starts with the importance text, then adds the phrase ' The main risks are:', and finally lists all the risk names separated by commas from risk_summaries keys.
Cybersecurity
Need a hint?

Use ', '.join(risk_summaries.keys()) to list the risk names separated by commas.