3D Printing - 3D Printer Hardware
Consider this code snippet for setting a heated bed temperature in a 3D printer firmware:
What will be printed if
bed_temp = 60
if filament == 'PLA':
bed_temp = 50
elif filament == 'ABS':
bed_temp = 100
print(f"Set bed temperature to {bed_temp}°C")What will be printed if
filament is set to 'ABS'?