07-04-2023, 03:55 PM
I'm trying to learn python scripting. I'm working in the Python-fu console
How do I terminate a loop?
example:
#############################
list = gimp.image_list()
for x in list:
pdb.gimp_image_delete(x)
list
#############################
No matter what I try, the console tries to include the next line in the loop
How do I terminate a loop?
example:
#############################
list = gimp.image_list()
for x in list:
pdb.gimp_image_delete(x)
list
#############################
No matter what I try, the console tries to include the next line in the loop