Textnote UI

How can I get a single Textnote data form using data-shapes? Right now I am getting separate output lists.

By creating a single string in python with newline seperator. Create a python node and insert the list.

str = ""
for x in data:
    str+= x + "\"

Don’t know how to apply this?

OUT = str

But always show the error message if you post a picture like that :slight_smile:

Tried with OUT = str

Warning: IronPythonEvaluator.EvaluateIronPythonScript operation failed.
EOL while scanning single-quoted string

Ah. I forgot an β€œn” :slight_smile: It has to be

str += str(x) + "\n"

2 Likes