python print every character in list as string

Solutions on MaxInterview for python print every character in list as string by the best coders in the world

showing results for - "python print every character in list as string"
Francisco
27 Nov 2017
1def list_to_string(s):
2    new = ""
3    for x in s: 
4        new += x  
5    return new