I've a list of names:
a = ['Maria','Luis','Andrea']
I want to put them in a string, so I make this:
names = ''
for name in a:
names = names +',' ' ' + name
There's a problem, in the first iteretation I add a comma and a space at the beginning, I know I can just delete the comma and the space but I would prefer just to not have it.
Also, can that be done in a lambda function?