strjoin#

strjoin(*args, sep=', ')[source]#

Like string join(), but handles more flexible inputs, converts items to strings. By default, join with commas.

Parameters:
  • args (list) – the list of items to join

  • sep (str) – the separator string

Example:

sc.strjoin([1,2,3], 4, 'five')

New in version 1.1.0.