Exploring Online Model Repositories for 3D Printing
📖 Scenario: You want to find and organize 3D models for printing from popular online repositories like Thingiverse and Printables. These websites offer many free designs shared by the community.Imagine you are creating a simple list of models you like from these sites to keep track of them.
🎯 Goal: Build a small collection of 3D model names and their source websites using a dictionary. Then, add a filter to select models from a specific repository.
📋 What You'll Learn
Create a dictionary called
models with exact model names as keys and their source websites as valuesCreate a variable called
selected_site to hold the name of the repository to filter byUse a dictionary comprehension to create a new dictionary called
filtered_models that only includes models from selected_siteAdd a final step to include a count of how many models are in
filtered_models using a variable called count💡 Why This Matters
🌍 Real World
3D printing enthusiasts often browse online repositories like Thingiverse and Printables to find models to print. Organizing and filtering these models helps manage printing projects.
💼 Career
Understanding how to organize and filter data from online sources is useful for roles in digital fabrication, product design, and maker communities.
Progress0 / 4 steps