Python Forum
appending 50 values in a row - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: appending 50 values in a row (/thread-39787.html)



appending 50 values in a row - Naomisaka - Apr-14-2023

Hello, I hope this is a quick fix for the pros!

I'm working in Touchdesigner and I'm trying to append all 50 values from row 0:50 from an operator 'null14' to the operator 'fifo1' each time they change.
But I only managed that it appends the value in row 0 line 0.

This is the line:
op('fifo1').appendRow(op('null14')[0,0])


I would appreciate any ideas! Thank you :)
Naomi