Why Forensics Preserves Evidence
📖 Scenario: You are working as a cybersecurity trainee. Your task is to understand how digital forensics preserves evidence during an investigation. This helps ensure that the evidence remains trustworthy and can be used in court or to solve a case.
🎯 Goal: Build a simple Python dictionary that lists reasons why forensics preserves evidence. Then, add a condition to filter important reasons. Finally, create a summary list of these reasons to understand their importance.
📋 What You'll Learn
Create a dictionary called
evidence_reasons with exact keys and valuesAdd a variable called
important_threshold with the value 3Use a dictionary comprehension to create
important_reasons with reasons having values greater or equal to important_thresholdCreate a list called
summary containing only the keys from important_reasons💡 Why This Matters
🌍 Real World
Digital forensics experts must carefully preserve evidence to ensure it is reliable and admissible in legal cases.
💼 Career
Understanding evidence preservation is essential for cybersecurity professionals working in incident response and forensic analysis.
Progress0 / 4 steps