Searched refs:lst (Results 1 – 1 of 1) sorted by relevance
39 def list_to_string_with(lst, joiner): argument40 elems = len(lst)44 return str(lst[0])46 return "{} {} {}".format(", ".join(str(l) for l in lst[:-1]), joiner, lst[-1])