Y
Hacker News
new
|
ask
|
show
|
jobs
by
jbester
5025 days ago
In python 1.X it was a function under the string module. This is maintained in 2.x but goes away in 3.x.
string.join(['1','2','3'], ' ') == ' '.join(['1','2','3'])