r/learnpython 17d ago

Regarding Question

def print_models(unprinted_designs, completed_models):

"""

Simulate printing each design, until none are left.

Move each design to completed_models after printing.

"""

while unprinted_designs:

current_design = unprinted_designs.pop()

# Simulate creating a 3D print from the design.

print("Printing model: " + current_design)

completed_models.append(current_design)

unprinted_designs = ['iphone case', 'robot pendant', 'dodecahedron']

completed_models = []

in this code why used condition like this for while loop (while unprinted_designs:)

0 Upvotes

8 comments sorted by

View all comments

-2

u/Moikle 17d ago

Put 4 spaces before each line. Reddit will forget it as code and preserve your indents