Skip to content
Advertisement

Why is it string.join(list) instead of list.join(string)?

This has always confused me. It seems like this would be nicer:

["Hello", "world"].join("-")

Than this:

"-".join(["Hello", "world"])

Is there a specific reason it is like this?

Advertisement

Answer

It’s because any iterable can be joined (e.g, list, tuple, dict, set), but its contents and the “joiner” must be strings.

For example:

'_'.join(['welcome', 'to', 'stack', 'overflow'])
'_'.join(('welcome', 'to', 'stack', 'overflow'))
'welcome_to_stack_overflow'

Using something other than strings will raise the following error:

TypeError: sequence item 0: expected str instance, int found

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement