I\'ve already looked at this question on representing strings in Python but my question is slightly different.
Here\'s the code:
>>> class W
"...it would be nice to avoid doing that every time..."
You want to avoid repeating that same code multiple times? Then use a function;:
def join_as_str(alist): return "\n".join(str(item) for item in alist)