I realise that if you have an iterable you should always use .join(iterable) instead of for x in y: str += x. But if there\'s only a fixed number of va
.join(iterable)
for x in y: str += x
I use next:
ret = '%s@%s' % (user, host)