Hi,
Is there a way to join a list of strings in grasshopper into one text but there would be still newLines inside?
Like image below:
I tried /n as a separator in scripting languages, but no result.
Hi,
Is there a way to join a list of strings in grasshopper into one text but there would be still newLines inside?
Like image below:
I tried /n as a separator in scripting languages, but no result.
Rightclick on Panel -> multiline data

Write a line break (with enter) as separator.
Not sure if it was a typo but your escape sequence should be \n with a backslash, works fine for me in Python 
a = "\n".join(x)
(List Access for x)
Thank you:)