How to output data one by one?

Did Python can output the data of the previous node one by one? For example, I currently have three pipe into this Python node, and I want the Python node to output one pipe at a time until all the input data is output.

Dynamo’s Python node processes the entire input list at once by default. But i will not recommend Loopwhile, but you can try

All Dynamo display happens at once - that is if you want to process only one item and then the next you will need to set up a means of getting an item from the list (List.GetItemAtIndex with a number slider wired into it might work well) and wire that into the Python node. This will process the item at the given index in that run. It will require that on your list of three items you have to set the index value and hit run 3 times which usually isn’t ideal - certainly not when you start processing 100’s or 1000’s of elements.

Instead Dynamo users typically set up their graph and integrated scripts such as your Python to process all objects provided, this way you get all 3 pipes processed and one output which lists them all.

May i ask why? What is your endgoal? Maybe there is better solution?

Amigo @leo25010278 buenas. what are you intendet to do more in deep?

This could help you