Understanding CNC vs Manual Machining
📖 Scenario: You work in a workshop where both CNC machines and manual machines are used. You want to create a simple program that helps you compare the two methods by listing their key features and differences.
🎯 Goal: Build a small program that stores features of CNC machining and manual machining, then filters and displays the differences clearly.
📋 What You'll Learn
Create a dictionary called
machining_methods with keys 'CNC' and 'Manual' and their feature lists as valuesCreate a variable called
filter_keyword to select features containing a specific wordUse a dictionary comprehension to create a new dictionary
filtered_features that only includes features containing filter_keywordPrint the
filtered_features dictionary to show the filtered results💡 Why This Matters
🌍 Real World
This project helps beginners understand how to organize and filter data about machining methods, a common task in manufacturing and engineering.
💼 Career
Knowing how to handle and filter data about CNC and manual machining is useful for roles in manufacturing, production planning, and CNC programming.
Progress0 / 4 steps
