I wonder if someone could tell me how to get this code block (concatenate), see picture below:
Thank you
I wonder if someone could tell me how to get this code block (concatenate), see picture below:
This is a typical code block, so you can type lots of things in it. In this case it is just adding two lists of strings together with a separator. You can do this by making a code block and typing something like this in it:
variable_list1 + “_” + variable_list2
Once you do, you should see the inputs/outputs change in the code block. In this case the two variables can be a different name, they just imply an input is going to be given to them and used in the code block.
Thank you, got it