字符串拼接:
>> ''.join('hello').join('world') 'whelloohellorhellolhellod' # 会对 'hello' 迭代遍历 >> ''.join(['hello', 'world']) 'helloworld'