0
0
3D Printingknowledge~30 mins

3D printing in education - Mini Project: Build & Apply

Choose your learning style9 modes available
3D Printing in Education
📖 Scenario: You are a teacher preparing a simple 3D printing project for your students. You want to create a basic 3D model setup that includes the main parts needed for printing a small educational object.
🎯 Goal: Build a basic 3D printing project setup by defining the model parts, setting print settings, applying the main printing logic, and finalizing the print job configuration.
📋 What You'll Learn
Create a dictionary called model_parts with exact parts and their quantities
Add a variable called print_temperature with the exact value 210
Use a loop with variables part and quantity to prepare the print queue
Add the final print job configuration variable called print_job with the correct structure
💡 Why This Matters
🌍 Real World
3D printing is used in education to help students learn design, engineering, and problem-solving by creating physical models from digital files.
💼 Career
Understanding how to prepare and configure 3D printing projects is useful for educators, designers, and technicians working with 3D printers in schools and labs.
Progress0 / 4 steps
1
Define the 3D model parts
Create a dictionary called model_parts with these exact entries: 'base': 1, 'arm': 2, 'gear': 3.
3D Printing
Need a hint?

Use curly braces to create a dictionary with keys and values exactly as shown.

2
Set the print temperature
Add a variable called print_temperature and set it to 210 degrees Celsius.
3D Printing
Need a hint?

Assign the number 210 to the variable named print_temperature.

3
Prepare the print queue
Use a for loop with variables part and quantity to iterate over model_parts.items() and create a list called print_queue that contains strings in the format "Print {quantity} of {part}".
3D Printing
Need a hint?

Use a for loop to go through each part and quantity, then add formatted strings to print_queue.

4
Finalize the print job configuration
Add a dictionary called print_job with keys 'temperature' set to print_temperature and 'queue' set to print_queue.
3D Printing
Need a hint?

Create a dictionary named print_job with the specified keys and values.