- Python string concatenation not working as expected
- out = 'Hello'
- print( out.join([' world']) )
- world
- ' '.join(['Hello', 'world'])
- >> Hello world
- ','.join(['Hello', 'world'])
- >> Hello,world
- '/'.join(['name', 'location', 'age'])
- >> name/location/age
- '*'.join(['name'])
- >> name
- 'hello'.join(['world'])
- >> world