I/O Hardware Basics
📖 Scenario: You are learning about the basic components of input/output (I/O) hardware in a computer system. Understanding these components helps you see how computers communicate with the outside world.
🎯 Goal: Build a simple list of common I/O hardware devices, add a category filter, then select devices by category, and finally label the list with a descriptive title.
📋 What You'll Learn
Create a dictionary named
io_devices with exact device names as keys and their categories as values.Create a variable named
filter_category to hold the category to filter devices by.Use a dictionary comprehension named
filtered_devices to select devices matching the filter_category.Add a variable named
list_title with the exact string describing the list.💡 Why This Matters
🌍 Real World
Understanding I/O hardware categories helps in managing computer resources and troubleshooting device connections.
💼 Career
Knowledge of I/O hardware basics is essential for roles in IT support, system administration, and computer hardware maintenance.
Progress0 / 4 steps