Python imprime chaque caractère dans la liste comme chaîne

def list_to_string(s):
    new = ""
    for x in s: 
        new += x  
    return new 
TheAssassin