## Feature Request Very common user case: When we want to **join** our list into a string with some separator (like a comma ","). ```KCL L = ['a', 'b', 'c'] S = L.join(',') ```