Creating String from List

Hello together,

i am trying to combine door parameters and create a new one out of 5.
Until now i managed to create a list that looks correct, i just dont know what to do next:

So my list is made out of 881 sublists ( = Number of Doors). Each sublist should generate a string, by example:
K.27.F01.
K.27.F03.
K.27.F01.

i tried string from list but it doesnt work… what am i doing wrong here?


Another thing i would like to do is add an “F” as a prefix everywhere, so that the strings end up like that:

F.K.27.F01.
F.K.27.F03.
F.K.27.F01.

Thanks!

Think the key you’re missing is ‘‘concat’’
After that you could simply write “F” + lst in a code block

1 Like

thanks! that works perfectly! :):grinning: