5 ms·
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',
by jbester 14y 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'])