StringValue.
join
Joins a list of strings together using the calling string as a separator
strings (list of strings) –
Examples
>>> import ibis >>> sep = ibis.literal(',') >>> result = sep.join(['a', 'b', 'c'])
joined
string