8 lines
221 B
Python
8 lines
221 B
Python
import printing_functions as pf
|
|
|
|
unprinted_designs = ['iphone case', 'robot pendant', 'dodecahedron']
|
|
completed_models = []
|
|
|
|
pf.print_models(unprinted_designs, completed_models)
|
|
pf.show_completed_models(completed_models)
|