0
0
3D Printingknowledge~30 mins

What is additive manufacturing in 3D Printing - Hands-On Activity

Choose your learning style9 modes available
What is additive manufacturing
📋 What You'll Learn
💡 Why This Matters
🌍 Real World
Additive manufacturing is widely used in industries like aerospace, healthcare, and automotive to create complex parts quickly and with less waste.
💼 Career
Understanding additive manufacturing basics is important for roles in engineering, product design, and manufacturing technology.
Progress0 / 4 steps
1
Create the list of key points
Create a list called key_points with these exact items in order: 'Builds objects layer by layer', 'Uses digital 3D models', 'Reduces waste compared to traditional methods'.
3D Printing
Need a hint?

Remember to use square brackets [] to create a list and separate items with commas.

2
Add a description variable
Create a string variable called description and set it to exactly: 'Additive manufacturing is a process of making objects by adding material one layer at a time.'
3D Printing
Need a hint?

Use quotes to create a string exactly as shown.

3
Use a for loop to process key points
Use a for loop with variable point to iterate over the list key_points. Inside the loop, create a new list called points_with_bullet that stores each point prefixed with a dash and space (e.g., '- Builds objects layer by layer').
3D Printing
Need a hint?

Start with an empty list, then add each point with a dash prefix inside the loop.

4
Create the final summary string
Create a string variable called summary that combines the description string and the points_with_bullet list joined by new lines. Use \n to separate lines so the summary reads as a paragraph followed by bullet points each on its own line.
3D Printing
Need a hint?

Use the join method to combine list items with new lines.