Tag Archives: join

Join strings recursively

I didn’t want to search for it, so I made mine: python: def join(l): “”" Joins pieces with a connector recursively “”" if type(l) is list:   if len(l) < 3:   exit(“ERROR: there aren’t any pieces to join”)  c0 … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment